Search results for

build disappears

50,297 results found

Post

Replies

Boosts

Views

Activity

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
visionOS NavigationSplitView - Refreshable ProgressView Disappears
Description I've encountered an issue with NavigationSplitView on visionOS when using a refreshable ScrollView or List in the detail view. The Problem: When implementing pull-to-refresh in the detail view of a NavigationSplitView, the ProgressView disappears and generates this warning: Trying to convert coordinates between views that are in different UIWindows, which isn't supported. Use convertPoint:fromCoordinateSpace: instead. I discovered that if the detail view includes a .navigationTitle(), the ProgressView remains visible and works correctly! Below is a minimal reproducible example showing this behavior. When you run this code, you'll notice: The sidebar refreshable works fine The detail refreshable works only when .navigationTitle(Something) is present Remove the navigationTitle and the detail view's refresh indicator disappears minimal Demo import SwiftUI struct MinimalRefreshableDemo: View { @State private var items = [Item 1, Item 2, Item 3] @State private var detailItems = [Detai
1
0
80
May ’25
Gmail account notifications disappear from lock screen
Have experienced an issue in all public betas of iOS 11 where, on the lock screen, if I have any email notifications from a Gmail-based account, they will disappear from the lock screen when 1) any notification is interacted with, 2) thumb is rested on the TouchID sensor to unlock the phone, but not pressed to dismiss the lock screen. Seems to be isolated to Gmail accounts, any iCloud email notifications have remained on screen under the mentioned conditions.
0
0
345
Aug ’17
Annotations disappearing after animating camera
Hello,Is there anyone else that experience that annotations disappear from the map view after animating the map camera in iOS 11.2 betas? The annotations are still present on the map and you can tap on them (if you know where they are), but the annotation image or callout view is not displayed. It works fine on previous versions of iOS 11 (11.1 and before) on the same build.I've reported the bug (#35285427) but would like to know if there is any workarounds for this issue? I'm afraid this issue will break my app once 11.2 is release to the public, as the issue is still present in iOS 11.2 beta 5.Steps to Reproduce:1. Add annotations to map2. Animate camera (heading, angle etc.)3. Deselect annotation and zoom out4. Some annotations has disappeard
6
0
3.0k
Nov ’17
Apps in Library disappear
before like 15 mins ago, i was watching something on Instagram and back to Library to open Discord App when all my applications was gone from Library until i restarted my phone and everything was back, maybe it’s a bug or something. IOS 26 Beta 3
0
0
77
Jul ’25
Toolbar and title disappear when interacting with view
Hello! I'm developing a Watch app, that's required to receive images from iPhone occasionally. Since the user will need their hands free, they have to inspect those images on Watch, which is why I added a rudimentary image viewer, allowing users to zoom in on images and pan around. As soon as the user pans or zooms, toolbar and title will disappear. This happens in simulator and on my colleague's Watch (A2376), but not on mine (A2356)! Tested both on watchOS 9.6.2 and 10.0.1. Here's a code excerpt: // View is presented on a sheet TabView(selection: $viewing) { ForEach(images) { reference in reference.img .resizable() .aspectRatio(contentMode: .fit) .scaleEffect(scale) .offset(offset + draggingOffset) .frame(width: screenSize.width, height: screenSize.height-1) .clipped() .id(reference.id) .gesture(panGesture, including: .gesture) .gesture(tapZoomGesture) .navigationTitle(viewerTitle) // .toolbar(content: { // ToolbarItem(placement: .cancellationAction) { // viewerToolbar // } // }) .focusable() .digi
1
0
930
Oct ’23
Reply to Uploading Mac Catalyst build incorrectly failed for Private API use related to Security framework
The error I was seeing has been fixed. I did contact Apple Developer Program Support and they eventually escalated the issue to an internal team. A couple of days later, I tried uploading a Catalyst build and it works. I don't know if the internal team fix it or someone else did, but the problem has disappeared.
Mar ’20
Why does my status bar disappear after a couple of seconds?
When I run my app on simulator or device, my status bar (time, battery, service) is visible for about 2 seconds during the launch screen and then disappears and doesn't come back. I have tried many variations within the info.plist file, changing View controller-based status bar appearance to YES and NO. trying different Status bar style and Status bar is initially hidden combinations. I don't know where i am going wrong. Can someone please help me? Here is my info.plist
0
0
926
Dec ’21