Search results for

build disappears

49,347 results found

Post

Replies

Boosts

Views

Activity

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
538
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
259
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
233
Jul ’25
iOS 14 .onAppear() is called on DISappear instead of appear
I've got a View with .onAppear(perform: { print(appear) }) .onDisappear(perform: { print(disappear) }) set on it. In iOS 13.5, when I navigate away from the view via a NavigationLink, it prints disapear; when I close the new view and get back to the first view appear gets printed. All as it should be. Now in iOS 14, this happens instead: when the view is first shown, it prints appear when navigating away from the view, it prints disappear and appear when navigating back to the view, nothing gets printed when navigating away from the view, then appear gets printed, along with the expected disappear ...is this some new super-lazy way of doing things or just plain a bug? It runs havoc with my login, as I set @Binding vars in the second view, which are evaluated back in the first view when .onAppear() runs. Worked great until iOS 14...
36
0
23k
Jul ’20
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
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
578
May ’22
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
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
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
532
Oct ’20
SwiftUI sheet disappears without transition
Hello, I have a sheet included in my App where the user can set a goal to achieve. The transition when the sheet disappears is performed well, as long as I don't switch the tab in my custom tab bar. As soon as I go to another tab, go back to the initial tab and try to open the sheet, it appears with a transition but disappears completely without a transition. I hope there is somebody who can help me. The Button that opens the sheet: //Button to show DailyGoalSetting screen/ Button(action: { //Opens DailyGoalSetting up self.showGoalSetting.toggle() }) { Image(icon_editgoal).foregroundColor(ThemeManager.Theme.current.buttonColor) } .sheet(isPresented: self.$showGoalSetting, content: { /Initialiser for DailyGoalSetting/ DailyGoalSetting(dailyGoal: self.$dailyGoal, showMe: self.$showGoalSetting) }) The sheet: NavigationView { VStack{ Form { //TextField to enter the goal //With some stylings TextField(Enter goal..., text: $textFieldManager.userInput) .multilineTextAlignment(.leading) .keyboardTyp
0
0
1.2k
Nov ’20