Search results for

“build disappears”

51,280 results found

Post

Replies

Boosts

Views

Activity

View disappears when rotating the screen
I made a ImagePicker in SwiftUI to pick a photo from the photo library. When the image was picked and shown by Image in a view, if I rotate the screen from portrait to landscape, the image disappeared. It behaves differently on different devices, e.g. on my colleague's device, the whole screen went black when rotating to landscape. And it is not always reproducible. But once it happens, it happends forever. I saw another post in this forum (https://forums.developer.apple.com/thread/119691) but I am not sure if they are the same issue. To check my code please refer to https://github.com/zjkuang/ImagePickerSwiftUI
1
0
1.5k
Sep ’19
Badge icons disappears in iOS 10
I have 2 apps, same code base (free+paid).I'm setting the badge icon before the app is closed (in applicationWillResignActive)For one of them (only the free version), the badge icon appears for a second and then disappears.I'm quite sure it's not something in the code, since it works ok for the paid version (badge doesn't disappear) and works ok (as much as I know/remember) on iOS 9.Also, when you move the app to a folder, the badge icon suddenly appears, until I reopen and close the app.It's one of those bugs that are hard to reproduce (sometimes the badge icon does stay for this app, but it much more disappears).Anyone else saw this?Yaniv
2
0
1k
Sep ’16
Inter-device Audio Device Disappears
Ever since the update to iOS 10.3, I have been unable to use my iPad Air with inter-device audio. It shows up in the device list in Audio MIDI setup, but when I click enable, it spins for a bit then disappears. It also disappears from Xcode at this point. It won't show up again until I unplug the lightning cable and plug it back in. Possibly related: I also have issues trying to create a new Audio or Screen recording of my iPad in QuickTime - it beachballs for a while then pops up saying The operation could not be completed and my device disappears from Audio MIDI Setup and Xcode.I tested with another iPad Air and an iPhone 6S - the other iPad Air has the same issue but the iPhone works as expected.Edit: Tested on an iPhone 5S and it has the same issue. The trend seems to be older devices have the issue but newer devices don't.Has anyone had the same issue and have any suggestions on how to fix this?
11
0
2.3k
Apr ’17
users Widgets disappear!!! Xcode 16
Some users have reported that the app's widgets have disappeared after we updated to the latest Xcode for iOS 18 development. They are unable to find our app in the widget search, which prevents them from re-adding the widget. We were unable to reproduce this issue on our own devices during testing. Could this be a system bug? Have others encountered a similar issue?
11
0
2.0k
Sep ’24
Toolbar bottomBar in DocumentGroup App disappears
In my own fairly complex DocumentGroup app, I've been having a problem with bottom bar items appearing briefly when first drawn, and then disappearing. This seems to be caused by the invalidation of one or more views in the hierarchy. In Apple's own WritingApp, which is designed to demonstrate DocumentGroup, adding a bottom bar item to the toolbar demonstrates the problem: This toolbar is on the StoryView: ToolbarItem() { Button(Show Story, systemImage: book) { isShowingSheet.toggle() } .sheet(isPresented: $isShowingSheet) { StorySheet(story: document.story, isShowingSheet: $isShowingSheet) .presentationSizing(.page) } } // This does not persist ToolbarItem(placement: .bottomBar) { Button(Foo) { } } } My 'Foo' button is new. What happens is that it persists for a few seconds; its disappearance coincides with the writing of the file to disk, it seems. I would dearly like it to persist! I've tried adding an ID, setting the toolbar visibility and so on, but no luck. Anyone had this working?
Topic: UI Frameworks SubTopic: SwiftUI
0
0
155
Sep ’25
SwiftUI TabBar Icons Disappearing
I have a UIKit tabbar view that contains three views, one of which is a UIViewControllerRepresentable wrapper around a UIKit view controller. Everything works fine except when that wrapped view is visible, the tab bar icons for the other two views disappear. Tapping within their bounds still works to select those views as expected, and they’re even visible in screenshots and in the debug view of the view hierarchy (they also display normally when running the iPad version of the app on Mac), so I’m not sure where to turn except perhaps a bug report. Is this a known issue when running UIKit views within a SwiftUI TabBar or where should I look next?
2
0
1k
Dec ’23
TabView disappearing on Xcode 13
I am trying to add a Tab View to my app. On Xcode 13 it disappears when I navigate to a tab that contains a List or view that has a scroll enabled. I am not sure if this is a bug or not. It works perfectly fine on Xcode 12.5.1 to iOS 15 Device. But Xcode 13 to iOS 15 is not working. Here is my Code: struct ContentView: View { var body: some View { TabView { HomeView() .tabItem { Image(systemName: 1.circle) Text(First) } .tag(1) FirstView() .tabItem { Image(systemName: 2.circle) Text(Second) } .tag(2) } } } struct HomeView: View { var body: some View { Text(Hello, World!) } } struct FirstView: View { var body: some View { NavigationView{ List{ Text(Hello) } } } }
5
0
2.4k
Jul ’21
View disappears when rotating the screen
I made a ImagePicker in SwiftUI to pick a photo from the photo library. When the image was picked and shown by Image in a view, if I rotate the screen from portrait to landscape, the image disappeared. It behaves differently on different devices, e.g. on my colleague's device, the whole screen went black when rotating to landscape. And it is not always reproducible. But once it happens, it happends forever. I saw another post in this forum (https://forums.developer.apple.com/thread/119691) but I am not sure if they are the same issue. To check my code please refer to https://github.com/zjkuang/ImagePickerSwiftUI
Replies
1
Boosts
0
Views
1.5k
Activity
Sep ’19
Input method to switch the reminder disappeared
Input method to switch the reminder disappeared in macOs Sierra 10.12.1 Beta (16B2327e)When you work in full screen, you will find it very inconvenient. Have anyone know How to fix it ?
Replies
0
Boosts
0
Views
282
Activity
Sep ’16
Badge icons disappears in iOS 10
I have 2 apps, same code base (free+paid).I'm setting the badge icon before the app is closed (in applicationWillResignActive)For one of them (only the free version), the badge icon appears for a second and then disappears.I'm quite sure it's not something in the code, since it works ok for the paid version (badge doesn't disappear) and works ok (as much as I know/remember) on iOS 9.Also, when you move the app to a folder, the badge icon suddenly appears, until I reopen and close the app.It's one of those bugs that are hard to reproduce (sometimes the badge icon does stay for this app, but it much more disappears).Anyone else saw this?Yaniv
Replies
2
Boosts
0
Views
1k
Activity
Sep ’16
Inter-device Audio Device Disappears
Ever since the update to iOS 10.3, I have been unable to use my iPad Air with inter-device audio. It shows up in the device list in Audio MIDI setup, but when I click enable, it spins for a bit then disappears. It also disappears from Xcode at this point. It won't show up again until I unplug the lightning cable and plug it back in. Possibly related: I also have issues trying to create a new Audio or Screen recording of my iPad in QuickTime - it beachballs for a while then pops up saying The operation could not be completed and my device disappears from Audio MIDI Setup and Xcode.I tested with another iPad Air and an iPhone 6S - the other iPad Air has the same issue but the iPhone works as expected.Edit: Tested on an iPhone 5S and it has the same issue. The trend seems to be older devices have the issue but newer devices don't.Has anyone had the same issue and have any suggestions on how to fix this?
Replies
11
Boosts
0
Views
2.3k
Activity
Apr ’17
Enable dictation alert disappears quickly
I'm facing a weird situation in my app. When keyboard shows up and I click on microphone icon for dictation, the Enable Dictation? alert shows up but disappears quickly before I can tap on any option. How do I find out what is wrong in my code or how do I fix it?
Replies
2
Boosts
0
Views
1.5k
Activity
Jun ’20
Quick reply disappearing from notifications while typing
I’ve updated to the latest versions for iOS 11, and it’s been extremely buggy. One ongoing problem I’ve had is when I open quick reply from my notifications, and sometimes when I start typing, the quick reply message just disappears. It’s extremely frustrating and wondered if there was any way I could fix this?
Replies
0
Boosts
0
Views
510
Activity
Nov ’17
Navigation bar back button disappears
Can anyone here verify whether the UINavigationController's navigation bar disappears when pushing a view controller onto the stack in a playground?gist here: https://gist.github.com/DanielAsher/8112d5215074e554e959f2212fc03190cheers,Daniel
Replies
1
Boosts
0
Views
574
Activity
Apr ’16
users Widgets disappear!!! Xcode 16
Some users have reported that the app's widgets have disappeared after we updated to the latest Xcode for iOS 18 development. They are unable to find our app in the widget search, which prevents them from re-adding the widget. We were unable to reproduce this issue on our own devices during testing. Could this be a system bug? Have others encountered a similar issue?
Replies
11
Boosts
0
Views
2.0k
Activity
Sep ’24
Reply to iOS 10 Error on Submit
Thanks Casey! My build kept disappearing, but after discovering a few missed emails from apple, calling out issues around my NSPhotoLibraryUsageDescription. I'd recommend folks to check their emails 😀
Replies
Boosts
Views
Activity
Nov ’16
Toolbar bottomBar in DocumentGroup App disappears
In my own fairly complex DocumentGroup app, I've been having a problem with bottom bar items appearing briefly when first drawn, and then disappearing. This seems to be caused by the invalidation of one or more views in the hierarchy. In Apple's own WritingApp, which is designed to demonstrate DocumentGroup, adding a bottom bar item to the toolbar demonstrates the problem: This toolbar is on the StoryView: ToolbarItem() { Button(Show Story, systemImage: book) { isShowingSheet.toggle() } .sheet(isPresented: $isShowingSheet) { StorySheet(story: document.story, isShowingSheet: $isShowingSheet) .presentationSizing(.page) } } // This does not persist ToolbarItem(placement: .bottomBar) { Button(Foo) { } } } My 'Foo' button is new. What happens is that it persists for a few seconds; its disappearance coincides with the writing of the file to disk, it seems. I would dearly like it to persist! I've tried adding an ID, setting the toolbar visibility and so on, but no luck. Anyone had this working?
Topic: UI Frameworks SubTopic: SwiftUI
Replies
0
Boosts
0
Views
155
Activity
Sep ’25
SwiftUI TabBar Icons Disappearing
I have a UIKit tabbar view that contains three views, one of which is a UIViewControllerRepresentable wrapper around a UIKit view controller. Everything works fine except when that wrapped view is visible, the tab bar icons for the other two views disappear. Tapping within their bounds still works to select those views as expected, and they’re even visible in screenshots and in the debug view of the view hierarchy (they also display normally when running the iPad version of the app on Mac), so I’m not sure where to turn except perhaps a bug report. Is this a known issue when running UIKit views within a SwiftUI TabBar or where should I look next?
Replies
2
Boosts
0
Views
1k
Activity
Dec ’23
Xcode 15 RC - visionOS has disappeared
I cant run my visionOS project with Xcode 15 RC, Apple Vision Pro target has disappeared I cant install on location settings tab and if I try to create new project visionOS app dont appear. Any solution ? PD: My visionOS project run successfully on beta 6 and 8.
Replies
4
Boosts
0
Views
3.6k
Activity
Sep ’23
TabView disappearing on Xcode 13
I am trying to add a Tab View to my app. On Xcode 13 it disappears when I navigate to a tab that contains a List or view that has a scroll enabled. I am not sure if this is a bug or not. It works perfectly fine on Xcode 12.5.1 to iOS 15 Device. But Xcode 13 to iOS 15 is not working. Here is my Code: struct ContentView: View { var body: some View { TabView { HomeView() .tabItem { Image(systemName: 1.circle) Text(First) } .tag(1) FirstView() .tabItem { Image(systemName: 2.circle) Text(Second) } .tag(2) } } } struct HomeView: View { var body: some View { Text(Hello, World!) } } struct FirstView: View { var body: some View { NavigationView{ List{ Text(Hello) } } } }
Replies
5
Boosts
0
Views
2.4k
Activity
Jul ’21
Screenshots Disappeared
When I go to my new version of my apps in iTunes connect, the screenshots do no appear. Just a red box that says the screenshot cannot be loaded. Do I need to reupload all my screenshots?
Replies
6
Boosts
0
Views
994
Activity
Nov ’15
Disappearing folders
Lost me folder on my iPhone Pro 12 Max when rearranging folders. How can I recover it?
Replies
0
Boosts
0
Views
183
Activity
Jan ’21