Search results for

build disappears

50,296 results found

Post

Replies

Boosts

Views

Activity

Reply to Missing "Download Size" column in "App Store File Sizes" in iTunes Connect
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Mar ’25
Reply to Game Center invite fails immediately
We're seeing a similar problem with our custom UI invites to real time matches. We find that making arbitrary changes to the build version number can make the issue disappear/reappear. Have filed a radar: 26717939Perhaps as robatmac says, keeping the build and version numbers the same as the store build until right before the update might be the way to go. But making a last minute change that you know will break your dev build, then trusting that it'll magically be fixed by iTunesConnect after release makes me uncomfortable.
Topic: Graphics & Games SubTopic: GameKit Tags:
Jun ’16
Storyboard objects disappear
Storyboard looks as designed when loading except will not render graphics. If I view a code and then return to storyboard all objects are there but invisible until I reload the project. I can reproduce this is a program that is a subset by changing the return of a method from an object containing a dictionary value to a number (Double), which then restores visibility. I hasve tried this with and without Auto Layout, without effect.I would appreciate any help
3
0
581
Jan ’17
Majority of apps disappeared
A couple of days after installing the beta, iPhone 7 Plus started strangely deleting apps. After a while only a handful were left. Of the default apps only notes was left. Safari, settings, phone... are all gone.I am on holiday trip without a laptop (or access to Apple care). Is there any way to get the phone working without computer/iTunes?THanks for your help in advance!
0
0
269
Jul ’17
12+ Apps Disappeared
I have two apps that are 12+, Spotify and Roblox, and yesterday, I noticed that they were gone from my Home Screen and App Library. They are still installed, but when I go on to the App Store, go on the app, and tap Open, I get a pop-up saying, “Restrictions Enabled—Certain apps, features, or services can't be seen or used when Restrictions are on. To use this app, turn Restrictions off.” But in fact, the age limit in my restrictions is set to 12+, so I don’t know why I can’t open them. I have the iPadOS 26 Developer Beta installed, and it’s an iPad (A16 model). Is the problem somehow related to the Beta? I posted this on in the Apple Support Community, but I got an email saying they deleted my post since it contained information about beta software.
1
0
247
Jul ’25
Reply to "App Store File Sizes" missing
I can confirm that the Compressed File Size literally appears and disappears randomly! Right now I have the same build open in two tabs, one has the Compressed File Size displayed, the other is missing it completely. It is a build from two days ago that is fully approved. Most of the time the Compressed File Size will not be displayed though, it's some rare thing you happen to see now and again lol.
Mar ’25
How to know when TestFlight intro screens appear and disappear?
TestFlight is great, and the intro screens that appear when a tester launches your app for the first time are very helpful. However, I want to know when those screens appear, and when they disappear, so I can pause audio playback and resume it. Right now audio plays under these screens and it's not ideal. I tried hooking into viewWillDisappear and viewWillAppear on the initial UIViewController, but the TestFlight intro screens do not trigger these.
1
0
542
Oct ’20
Navigation Disappears after Updating EnvObject
Xcode: Version 12.1 (12A7403) iOS: 14.x I have run into this weird bug where the navigation bar back button disappears when a child view updates the list used by the navigation view's root list. I've put together some MVP code to demo the bug: import SwiftUI class ItemStore: ObservableObject { @Published var items = [Int]() init(items: [Int]) { self.items = items} } struct ContentView: View { @EnvironmentObject var store: ItemStore var body: some View { NavigationView { List { ForEach(store.items, id: .self) { label in NavigationLink(destination: Child1(label: label)) { Text(String(label)) } } } } } } struct Child1: View { var label: Int var body: some View { List { NavigationLink(destination: Child2(label: label)) { Text(Child1: (label)) } } } } struct Child2: View { @EnvironmentObject var store: ItemStore var label: Int var body: some View { Text(Child2: (label)) .toolbar { Button(action: { let max = store.items.max() store.items.append(max == nil ? 1 : max! + 1) }) { Image(systemName: plus) } } }
2
0
2.8k
Oct ’20
Zoom navigation causes the source view to disappear
After returning from the child view to the parent, the latter one will simply disappear. This is the full view. See itemsContent where I perform the navigation. The last tapped rectangle in this example will simply disappear. struct DashboardView: View { @State var viewModel: DahsboardViewModel @Namespace private var namespace var body: some View { ScrollView(.vertical) { LazyVStack(spacing: 24) { ForEach(viewModel.sections) { section in VStack(spacing: 16) { Text(section.title) itemsContent(for: section) } } } } } func itemsContent(for section: DashboardSection) -> some View { ForEach(section.items) { item in NavigationLink { PatternLearningRouter().rootView .id(item.id) .navigationTransition(.zoom(sourceID: item.id, in: namespace)) } label: { Rectangle() .fill(Color.yellow) .frame(width: 80, height: 80) .overlay { Text(item.title) } .matchedTransitionSource(id: item.id, in: namespace) } } } } XCode26 26.0.1(17A400) iPhone 16 Pro, iOS 26.0.1 Note: Only reproduced when I swipe back (not r
0
0
73
Oct ’25
Context menu item disappears in Safari Extension with Manifest v3
I'm trying to convert an existing Chrome Extension to Safari Web Extension. Immediately after convert, xcode opens and I build the project. Everything looks perfect in Safari: the popup works fine, the context menu item is there, options are there. The moment I restart Safari, the context menu item disappears and service worker is not loaded. My Manifest v3: background: { service_worker: js/background.js }, permissions: [ contextMenus, activeTab, storage ], My background script: chrome.contextMenus.removeAll(() => { chrome.contextMenus.create(properties); });
0
0
588
May ’22