Search results for

build disappears

49,258 results found

Post

Replies

Boosts

Views

Activity

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
969
Dec ’23
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
1.8k
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
125
Sep ’25
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 disappearing, then reappearing when following a navigation link
I'm seeing some unexpected behavior when pushing a view using NavigationLink. It seems the source view momentarily disappears, the reappears when pushing the destination view, finally disappearing for good after the transition has completed. You can notice the following output if you use the code below it in a brand new iOS project (from the default Xcode template), run it, and tap on the navigation link. Is this expected behavior? Source appear Source disappear Source appear Destination appear Source disappear struct ContentView: View { tvar body: some View { ttNavigationView { tttVStack { ttttText(Hello, world!).padding() ttttt.onAppear { ttttttprint(Source appear) ttttt} ttttt.onDisappear { ttttttprint(Source disappear) ttttt} ttttNavigationLink( tttttdestination: DestinationView(), tttttlabel: { ttttttText(Navigate) ttttt}) ttt} tt} t} } struct DestinationView: View { tvar body: some View { ttText(Destination View) ttt.onAppear { ttttprint(Destination appear) t
0
0
990
Jul ’20
VoIP Call Records Disappearing Issue
Hello! I'm a developer working on developing a telephony service using VoIP. I've been keeping records of calls, but I've noticed some strange behavior. I'm wondering if anyone has experienced similar issues and if there are any solutions. Currently, the setting includesCallsInRecents is set to true. The issues I'm encountering are as follows: Check the records after a voice call. Check the records after a video call. Check the records after another voice call. During the third step, I observed that all records of the second video call disappeared. Does anyone have any insights or assistance regarding this issue? After conducting another video call and checking again, I noticed that previous video call records are displayed along with the new ones. However, when I conduct a voice call, the records disappear again. I'm wondering if this is an operating system bug or if there's a specific place I can check to investigate. Any information would be greatly appreciated!
0
0
595
Dec ’23
Bonjour service disappears
Hi all, I'm porting my app network layer from multipeer connectivity to a sockets layer as a result of this situation (https://forums.developer.apple.com/thread/28934). For the rewrite, I'm using the popular GCDAsyncSocket along with NSNetServices for locating the server service.I wrote a POC app based on a number of examples I have seen out there as well as referring to the apple docs (such as this https://developer.apple.com/library/ios/documentation/Networking/Conceptual/NSNetServiceProgGuide/Articles/PublishingServices.html) and thishttps://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/NetServices/Articles/faq.html#//apple_ref/doc/uid/TP40008762-SW16I've run into a rather intriguing issue where the published service on the server app just disappears without any notification at all. I know it disappears because I am monitoring services via dns-sd utility. This situation manifests when I try to test the scenario of the client going to background then foreground repeatedly.
0
0
1.1k
Jan ’16
APNS Production certificate disappear
Hi. Today found a critical issue. APNs certificates disappears (development and sandbox) in Certificates section. Certificates expiration year - 2022. And now clients not receiving push notifications. I`m not received any emails, notifications from Apple about expiration or removing current certificates. As was say before from new Apple Worldwide Developer Relations. This new intermediate certificate will not affect the availability or functionality of apps you’re already distributing on the App Store. And you can continue to use your existing certificates until they expire. Where I can see audit (logs) whats happened with certificates, who remove? Thanks UPD: If create new APNs certificate this will affect to current application in AppStore? Need I upload new app version?
1
0
1.6k
Mar ’21