Search results for

“build disappears”

51,287 results found

Post

Replies

Boosts

Views

Activity

Tracking Usage Description Always Disappear
Hi Everybody! I need help about Tracking Transparency. I can add it, it work number one. But I don't know why, the key Privacy - traking Usage Description always disappear with some apps from info.plist. I always need to check if it still there before archive. It look like if it affect apps with multi-languages. I add it in info.plist, I test, all work fine, I archive, but Apple denied my app because it miss the privacy key. I go back in xcode and it mysteriously disappear. Someone can explain me why please??? Thank you for your help.
0
0
585
Apr ’22
Tiles disappear from SKTileMapNode when moving it
I am developing a game for IPhone and IPad and I have created a .sks file and edited it in the Tile Map Editor using a Tile Set. I am accessing the created tile map in a Sprite Kit Scene class as SKTileMapNode and then moving it to the left programmatically then creating a sidescroller game. The problem is however that when I run the game tiles disappear from the SKTileMapNode just before the map leaves the visible area of the screen. I have tried setting shouldCullNonVisibleNodes = false but it has no effect. Has anyone encountered similar problems?
1
0
665
Apr ’22
Are storyboard and UIKit due to disappear ?
I read in Xcode 15.2 release notes that @IBDesignable and @Inspectable are deprecated and will disappear in a future release. After the abandon of WatchKit and its storyboard, replaced by SwiftUI, does it mean storyboards (and consequently UIKit) will progressively disappear, leaving developers alone with SwiftUI to design apps (IMHO, inadequate to design complex UI: for instance, I always struggle to position precisely objects for all devices sizes as we miss constraints manager in SwiftUI) ? For sure, IBDesignable is (was) whimsical, but a very useful tool to design sophisticated UI. Replacing by #Preview does not make it. I also understand that Xcode is a very complex piece of code and that maintaining and evolving some tools (as IBDesignable) requires effort. But isn't it what we expect from Apple ? To provide us with the best tools and keep on the promise of WYSIWYG environments, all along ? Is it only me or do others share this view ?
2
0
2.8k
Dec ’23
Persisted log entries disappeared?
Hi! I was able to successfully persist my debug log entires using the OSLogPreferences key in my Info.plist and retrieve the logs from my iPhone using log collect. This worked to get log messages created when my app executed a background task tonight (2026-01-20 00:20). But log Debug and Default log messages from a normal run yesterday (2026-01-19 15:34) disappeared. I can query for the missing messages in the log archive I created yesterday but they are missing in the log archive I created today covering also yesterday. I had invoked: % sudo log collect --device-name --last 25h --output /tmp/system_logs.logarchive ... %sudo log show /tmp/system_logs.logarchive --debug --info --predicate 'subsystem==com.example.MyApp' Is this expected and/or is there anything I could do to persist the logs for a longer period? For reference, that's what I have added to my Info.plist for the debug build configuration so far: OSLogPreferences com.example.MyApp DEFAULT-OPTIONS Level Enable Debug Persist De
3
0
189
Jan ’26
iOS 18 tabbar flickers and then disappears
Use a UITabBarController to load two ViewControllers, A and B, both wrapped in UINavigationController. In A’s viewDidLoad method, push to C, with C’s hidesBottomBarWhenPushed set to true. When popping back to A, the tab bar flickers and then disappears. In versions lower than iOS 18, after popping back, the tabBar does not flicker and disappear. A ViewController override func viewDidLoad() { super.viewDidLoad() let vc = CViewController() vc.hidesBottomBarWhenPushed = true navigationController?.pushViewController(vc, animated: true) // Do any additional setup after loading the view. }
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
1k
Oct ’24
NSButtons disappear on macOS 26
I have attached 2 images of our Mac Apps user interface. The app is built for macOS 15.6 or newer. On macOS 15 and earlier everything looks fine. But the same App running on macOS 26 the controls disappear. We were able to temporarily resolve the problem by adding UIDesignRequiresCompatibility to the info.plist. This type of nonsense happens all over the app without the compatibility switch. Shouldn't all these legacy controls be backward compatible on Glass? This part of the app where the controls are disappearing is built in Swift (not swift ui) and uses standard programatic layout and visual constraints. On macOS 26, there are no Xcode warnings or layout errors on the console relative to the layout so we are confused as to how we would resolve this without the use of UIDesignRequiresCompatibility. Is this some kind of bug in NSControl glass compatibility? We are not likely to move the entire app into SwiftUI anytime soon. How would we resolve this?
4
0
405
Dec ’25
App disappear after processing
Hi supporter,I'm have upload many times, with first 2times, have receive email with error missing description on info, but 5-10 nextime upload disappear after processing and didnt get any email status or missing error.Please help me double check that, it's urgent by me. Im have email to support but didnt any response.Im using xcode 11.Thank you very much.
4
0
913
Oct ’19
iCloud - desktop content disappeared
I'm not sure what I did but somehow I think I did it while purusing the icloud settings from my iphone.Here's my question: I just opened my MacBook and everything on my desktop has disappeared. Of course, I asked Google what happened and was advised via a similar question from an Apple Developer Form to delete all the content and settings from my iphone and then restore it from icloud. Ok, doing that now.......not going too well. In the mean time I found the contents of my desktop, on my harddrive. HD>users>mynamedfolder>icloud drive (archive). Any ideas of what might have happened? and how do I put the contents of my desktop back on my desktop.
0
0
286
Jun ’17
Homkit devices disappearing overnight
I've been consistently having a problem with HomeKit devices, scenes, and automations magically vanishing overnight. When I add the devices they are fully functional at first but eventually they just disappear (usually when I'm sleeping). It also is gone from the manufacturers app. I can add the device back in as many times as I want but it continues to do this. Sometimes it stays but I cannot figure out any rhyme or reason to this problem. Any ideas?
1
0
1.2k
Apr ’17
Tracking Usage Description Always Disappear
Hi Everybody! I need help about Tracking Transparency. I can add it, it work number one. But I don't know why, the key Privacy - traking Usage Description always disappear with some apps from info.plist. I always need to check if it still there before archive. It look like if it affect apps with multi-languages. I add it in info.plist, I test, all work fine, I archive, but Apple denied my app because it miss the privacy key. I go back in xcode and it mysteriously disappear. Someone can explain me why please??? Thank you for your help.
Replies
0
Boosts
0
Views
585
Activity
Apr ’22
Tiles disappear from SKTileMapNode when moving it
I am developing a game for IPhone and IPad and I have created a .sks file and edited it in the Tile Map Editor using a Tile Set. I am accessing the created tile map in a Sprite Kit Scene class as SKTileMapNode and then moving it to the left programmatically then creating a sidescroller game. The problem is however that when I run the game tiles disappear from the SKTileMapNode just before the map leaves the visible area of the screen. I have tried setting shouldCullNonVisibleNodes = false but it has no effect. Has anyone encountered similar problems?
Replies
1
Boosts
0
Views
665
Activity
Apr ’22
Are storyboard and UIKit due to disappear ?
I read in Xcode 15.2 release notes that @IBDesignable and @Inspectable are deprecated and will disappear in a future release. After the abandon of WatchKit and its storyboard, replaced by SwiftUI, does it mean storyboards (and consequently UIKit) will progressively disappear, leaving developers alone with SwiftUI to design apps (IMHO, inadequate to design complex UI: for instance, I always struggle to position precisely objects for all devices sizes as we miss constraints manager in SwiftUI) ? For sure, IBDesignable is (was) whimsical, but a very useful tool to design sophisticated UI. Replacing by #Preview does not make it. I also understand that Xcode is a very complex piece of code and that maintaining and evolving some tools (as IBDesignable) requires effort. But isn't it what we expect from Apple ? To provide us with the best tools and keep on the promise of WYSIWYG environments, all along ? Is it only me or do others share this view ?
Replies
2
Boosts
0
Views
2.8k
Activity
Dec ’23
Persisted log entries disappeared?
Hi! I was able to successfully persist my debug log entires using the OSLogPreferences key in my Info.plist and retrieve the logs from my iPhone using log collect. This worked to get log messages created when my app executed a background task tonight (2026-01-20 00:20). But log Debug and Default log messages from a normal run yesterday (2026-01-19 15:34) disappeared. I can query for the missing messages in the log archive I created yesterday but they are missing in the log archive I created today covering also yesterday. I had invoked: % sudo log collect --device-name --last 25h --output /tmp/system_logs.logarchive ... %sudo log show /tmp/system_logs.logarchive --debug --info --predicate 'subsystem==com.example.MyApp' Is this expected and/or is there anything I could do to persist the logs for a longer period? For reference, that's what I have added to my Info.plist for the debug build configuration so far: OSLogPreferences com.example.MyApp DEFAULT-OPTIONS Level Enable Debug Persist De
Replies
3
Boosts
0
Views
189
Activity
Jan ’26
Reply to Builds not showing under Testflight iOS Builds
I am also facing same issues. All the builds in testflight get disappeared and the uploaded builds are seen in Activity tab. So I can't able to add testers and test the build.Note: In my case Apps Store Connect User label is disabled.So I can't able to try the shopno's answer
Replies
Boosts
Views
Activity
Apr ’19
iOS 18 tabbar flickers and then disappears
Use a UITabBarController to load two ViewControllers, A and B, both wrapped in UINavigationController. In A’s viewDidLoad method, push to C, with C’s hidesBottomBarWhenPushed set to true. When popping back to A, the tab bar flickers and then disappears. In versions lower than iOS 18, after popping back, the tabBar does not flicker and disappear. A ViewController override func viewDidLoad() { super.viewDidLoad() let vc = CViewController() vc.hidesBottomBarWhenPushed = true navigationController?.pushViewController(vc, animated: true) // Do any additional setup after loading the view. }
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
1k
Activity
Oct ’24
NSButtons disappear on macOS 26
I have attached 2 images of our Mac Apps user interface. The app is built for macOS 15.6 or newer. On macOS 15 and earlier everything looks fine. But the same App running on macOS 26 the controls disappear. We were able to temporarily resolve the problem by adding UIDesignRequiresCompatibility to the info.plist. This type of nonsense happens all over the app without the compatibility switch. Shouldn't all these legacy controls be backward compatible on Glass? This part of the app where the controls are disappearing is built in Swift (not swift ui) and uses standard programatic layout and visual constraints. On macOS 26, there are no Xcode warnings or layout errors on the console relative to the layout so we are confused as to how we would resolve this without the use of UIDesignRequiresCompatibility. Is this some kind of bug in NSControl glass compatibility? We are not likely to move the entire app into SwiftUI anytime soon. How would we resolve this?
Replies
4
Boosts
0
Views
405
Activity
Dec ’25
Why are Safari Sessions Disappearing for No Reason?
Numerous times a day I am noticing that sessions on safari are disappearing for no reason, particularly when I am navigating between apps, Chrome windows, Apple apps and/or when I go in finder.
Replies
0
Boosts
0
Views
245
Activity
Nov ’23
App disappear after processing
Hi supporter,I'm have upload many times, with first 2times, have receive email with error missing description on info, but 5-10 nextime upload disappear after processing and didnt get any email status or missing error.Please help me double check that, it's urgent by me. Im have email to support but didnt any response.Im using xcode 11.Thank you very much.
Replies
4
Boosts
0
Views
913
Activity
Oct ’19
itunes install ipa, and icon disappears?
After I install it to Ipad mini (9.3.2) by itunes , the icon disappears immediatlyhow I fix this ?
Replies
3
Boosts
0
Views
1.6k
Activity
Jun ’16
Reply to iOS build not showing in Testflight
Yes my new build never did finish processing and stayed disappeared. I am happy to test upload when you deploy an update. Perhaps something about certain build contents is triggering the issue? FWIW my iOS/iPad app has widget and watch extension. Sundial id976460540.
Replies
Boosts
Views
Activity
Oct ’22
iCloud - desktop content disappeared
I'm not sure what I did but somehow I think I did it while purusing the icloud settings from my iphone.Here's my question: I just opened my MacBook and everything on my desktop has disappeared. Of course, I asked Google what happened and was advised via a similar question from an Apple Developer Form to delete all the content and settings from my iphone and then restore it from icloud. Ok, doing that now.......not going too well. In the mean time I found the contents of my desktop, on my harddrive. HD>users>mynamedfolder>icloud drive (archive). Any ideas of what might have happened? and how do I put the contents of my desktop back on my desktop.
Replies
0
Boosts
0
Views
286
Activity
Jun ’17
HTML form validation bubbles disappear
When you submit a form with errors, if the invalid field is above the fold, the page is scrolled to the invalid field, but the validation bubble disappears immediatelly. This bug is new in Safari 12.http://jsfiddle.net/cs4mjyzL/4/
Replies
0
Boosts
0
Views
2.9k
Activity
Oct ’18
Homkit devices disappearing overnight
I've been consistently having a problem with HomeKit devices, scenes, and automations magically vanishing overnight. When I add the devices they are fully functional at first but eventually they just disappear (usually when I'm sleeping). It also is gone from the manufacturers app. I can add the device back in as many times as I want but it continues to do this. Sometimes it stays but I cannot figure out any rhyme or reason to this problem. Any ideas?
Replies
1
Boosts
0
Views
1.2k
Activity
Apr ’17
10.15 Beta 3 TouchBar Disappeared!
After upgrade to 10.15 Beta (19A501i) . TouchBar Disappeared...MacBook Pro (15-inch, 2016)Help......
Replies
1
Boosts
0
Views
684
Activity
Jul ’19