Search results for

“build disappears”

51,300 results found

Post

Replies

Boosts

Views

Activity

Zoom navigation causes the source view to disappear
After returning from the child view to the parent, the latter one will simply disappear. This is the full view. See itemsContent where I perform the navigation. The last tapped rectangle in this example will simply disappear. struct DashboardView: View { @State var viewModel: DahsboardViewModel @Namespace private var namespace var body: some View { ScrollView(.vertical) { LazyVStack(spacing: 24) { ForEach(viewModel.sections) { section in VStack(spacing: 16) { Text(section.title) itemsContent(for: section) } } } } } func itemsContent(for section: DashboardSection) -> some View { ForEach(section.items) { item in NavigationLink { PatternLearningRouter().rootView .id(item.id) .navigationTransition(.zoom(sourceID: item.id, in: namespace)) } label: { Rectangle() .fill(Color.yellow) .frame(width: 80, height: 80) .overlay { Text(item.title) } .matchedTransitionSource(id: item.id, in: namespace) } } } } XCode26 26.0.1(17A400) iPhone 16 Pro, iOS 26.0.1 Note: Only reproduced when I swipe back (not r
0
0
87
Oct ’25
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
`.none` of `NSDragOperation` in Swift 3 is disappeared or not?
I can manage to use `NSDragOperation(rawValue: 0)` instead of `NSDragOperation.None`, because the latter is no more allowed in Swift 3.However, when I set a break point, I found `.none` is still existing in the `let sourceDragMask = sender.draggingSourceOperationMask()` I got.(lldb) print sourceDragMask (NSDragOperation) $R0 = [.none, .copy, .link, .generic, .move, .delete]So, is `.none` disappeared or not? Or is this a bug that Swift 3 can't use `.none` but the SDK can tansfer a `.none`?macOS Sierra 10.12 (16A323), Xcode 8.0 (8A218a).
Topic: UI Frameworks SubTopic: AppKit Tags:
2
0
1.7k
Oct ’16
Xcode 14: Simulator Disappeared After Crash
Testing my app in an iOS 15.5 simulator with Xcode 14 beta, it crashed hard, locking up my entire laptop. After restarting, it seems that the iOS 15.5 simulator runtime disappeared, and I'm now getting the following error: The com.apple.CoreSimulator.SimRuntime.iOS-15-5 simulator runtime is not available. runtime profile not found Download the com.apple.CoreSimulator.SimRuntime.iOS-15-5 simulator runtime from the Components section in Xcode's Preferences. Unfortunately, Xcode seems to think that I already have the runtime, and no longer gives me the option to download it.
3
0
4.5k
Jun ’22
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
350
Aug ’17
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
934
Dec ’21
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
App Store Ratings and Reviews Missing or Disappearing
Hello everyone, We’ve recently noticed an issue with our app’s ratings and reviews on the App Store. Some users have informed us that they left ratings and/or reviews, but these never appeared. Additionally, we’ve observed some reviews disappearing after they were initially visible. We contacted Apple Support, and while they pointed us to the App Store terms and conditions—indicating that Apple has discretion over review removal—we’re trying to determine if there might be a technical reason behind this behavior. Here are some specifics: It has been a while since we’ve seen any new ratings or reviews, even though users have confirmed submitting them. Some reviews that were previously approved and visible have disappeared without explanation. We’ve ensured—to the extent possible—that our app complies with all guidelines and policies, so we’re ruling out violations as the cause for now. Since the app is still new, even a few ratings or reviews missing is quite impactful. Has anyone else experie
1
0
111
Mar ’25
RealityKit ImageAnchor disappears after 12.5 Update
I am currently doing an RealityKit AR App for a school project. I am using an Image Anchor and a 3D Model. Before the Update to 12.5, the 3D Model appeared and was placed in the 3D Room on top of the Card. When I moved the Camera further away from the Card, the Model would still be there, although it wasn't visible anymore. But now, if i move the Camera further away and the Card isn't visible anymore, the 3D Model disappears. I also created a new simple RealityKit Project with just the ImageAnchor and the Model and it still doesn't work as before. How do I fix this?
1
0
602
Jun ’21
iPadOS in iOS18 with new UITabBarController ... UIBarButtonItems disappear
I have an iPad app using the new UITabBarController on iPadOS18, which is suffering from a new issue from the new layout. Within my tabs, I have a UISplitViewController, with a 2 column layout. If I load the app, it works ok, but if I put the app in the background, and then bring it to foreground, the navigation bar buttons and title just disappear from the splitView controller’s primary view controller. Before going to background: After coming back from background: I also get the following layout issues posted in the debugger consoler: Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. ( , , , = UILayoutGuide:0x600003b00a80'TabBarGuide(0x103d18810)'.trailing (active)>, , ) Will attempt to recover by breaking constraint Make a symbolic breakpoint at UIVie
1
0
1.5k
Aug ’24
Swipe the table view swipe not disappear
why when i Swipe the table view the swipe not disappear? see screenshot It just gets stuck like that and won't come back, why? func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { let item = realArray[indexPath.row] let callAction = UIContextualAction(style: .normal, title: Call Private, handler: { (action, view, success) in self.service.dialNumber(number: item.telephone, prefixNumber: true) self.service.setupCallerId(firstName: item.firstName, lastName: item.lastName, telephone: item.telephone) }) callAction.backgroundColor = .systemGreen let configuration = UISwipeActionsConfiguration(actions: [callAction]) return configuration }
0
0
497
Oct ’22
Zoom navigation causes the source view to disappear
After returning from the child view to the parent, the latter one will simply disappear. This is the full view. See itemsContent where I perform the navigation. The last tapped rectangle in this example will simply disappear. struct DashboardView: View { @State var viewModel: DahsboardViewModel @Namespace private var namespace var body: some View { ScrollView(.vertical) { LazyVStack(spacing: 24) { ForEach(viewModel.sections) { section in VStack(spacing: 16) { Text(section.title) itemsContent(for: section) } } } } } func itemsContent(for section: DashboardSection) -> some View { ForEach(section.items) { item in NavigationLink { PatternLearningRouter().rootView .id(item.id) .navigationTransition(.zoom(sourceID: item.id, in: namespace)) } label: { Rectangle() .fill(Color.yellow) .frame(width: 80, height: 80) .overlay { Text(item.title) } .matchedTransitionSource(id: item.id, in: namespace) } } } } XCode26 26.0.1(17A400) iPhone 16 Pro, iOS 26.0.1 Note: Only reproduced when I swipe back (not r
Replies
0
Boosts
0
Views
87
Activity
Oct ’25
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
Replies
6
Boosts
0
Views
3.0k
Activity
Nov ’17
Developer Provisioning Profile disappeared from the MAC Mini location
When I try to copy existing provision profile from our onprem mac mini to aws mac mini it is disappeared from the folder . /Users/ec2-user/MobileDevice/Provisioning Profiles/ Not sure whats going here .
Replies
0
Boosts
0
Views
564
Activity
Mar ’24
`.none` of `NSDragOperation` in Swift 3 is disappeared or not?
I can manage to use `NSDragOperation(rawValue: 0)` instead of `NSDragOperation.None`, because the latter is no more allowed in Swift 3.However, when I set a break point, I found `.none` is still existing in the `let sourceDragMask = sender.draggingSourceOperationMask()` I got.(lldb) print sourceDragMask (NSDragOperation) $R0 = [.none, .copy, .link, .generic, .move, .delete]So, is `.none` disappeared or not? Or is this a bug that Swift 3 can't use `.none` but the SDK can tansfer a `.none`?macOS Sierra 10.12 (16A323), Xcode 8.0 (8A218a).
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
2
Boosts
0
Views
1.7k
Activity
Oct ’16
Xcode 14: Simulator Disappeared After Crash
Testing my app in an iOS 15.5 simulator with Xcode 14 beta, it crashed hard, locking up my entire laptop. After restarting, it seems that the iOS 15.5 simulator runtime disappeared, and I'm now getting the following error: The com.apple.CoreSimulator.SimRuntime.iOS-15-5 simulator runtime is not available. runtime profile not found Download the com.apple.CoreSimulator.SimRuntime.iOS-15-5 simulator runtime from the Components section in Xcode's Preferences. Unfortunately, Xcode seems to think that I already have the runtime, and no longer gives me the option to download it.
Replies
3
Boosts
0
Views
4.5k
Activity
Jun ’22
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.
Replies
0
Boosts
0
Views
350
Activity
Aug ’17
Keychain disappears after iPhone reboot in iOS 18
When I reboot my iPhone 14 pro with Live Activity started, KeyChain information disappears. So there is a problem that I have to sign-in again when I enter the app. There is no problem rebooting the iPhone without Live Activity. iOS17 didn't have this problem.
Replies
3
Boosts
0
Views
672
Activity
Oct ’24
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
Replies
0
Boosts
0
Views
934
Activity
Dec ’21
Reply to log noise? : "NSPersistentUIDeleteItemAtFileURL blablabla"
I'm developing for iMac. The error shows up in the same place in my code every time I build. I've looked for something that might relate in my code and could never get to restoreount.plist. The message disappears after some delay and the app still runs. Still testing.
Replies
Boosts
Views
Activity
May ’24
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.
Replies
Boosts
Views
Activity
Mar ’20
App Store Ratings and Reviews Missing or Disappearing
Hello everyone, We’ve recently noticed an issue with our app’s ratings and reviews on the App Store. Some users have informed us that they left ratings and/or reviews, but these never appeared. Additionally, we’ve observed some reviews disappearing after they were initially visible. We contacted Apple Support, and while they pointed us to the App Store terms and conditions—indicating that Apple has discretion over review removal—we’re trying to determine if there might be a technical reason behind this behavior. Here are some specifics: It has been a while since we’ve seen any new ratings or reviews, even though users have confirmed submitting them. Some reviews that were previously approved and visible have disappeared without explanation. We’ve ensured—to the extent possible—that our app complies with all guidelines and policies, so we’re ruling out violations as the cause for now. Since the app is still new, even a few ratings or reviews missing is quite impactful. Has anyone else experie
Replies
1
Boosts
0
Views
111
Activity
Mar ’25
Reply to Not able to change background color of view in Xcode
That should work. But you have a warning about an internal error… So try to: quit Xcode reopen project do a Clean Build Folder check error has disappeared try again setting color If that doesn't work, remove the VC and create a new ViewController (set it as Start VC)
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’22
RealityKit ImageAnchor disappears after 12.5 Update
I am currently doing an RealityKit AR App for a school project. I am using an Image Anchor and a 3D Model. Before the Update to 12.5, the 3D Model appeared and was placed in the 3D Room on top of the Card. When I moved the Camera further away from the Card, the Model would still be there, although it wasn't visible anymore. But now, if i move the Camera further away and the Card isn't visible anymore, the 3D Model disappears. I also created a new simple RealityKit Project with just the ImageAnchor and the Model and it still doesn't work as before. How do I fix this?
Replies
1
Boosts
0
Views
602
Activity
Jun ’21
iPadOS in iOS18 with new UITabBarController ... UIBarButtonItems disappear
I have an iPad app using the new UITabBarController on iPadOS18, which is suffering from a new issue from the new layout. Within my tabs, I have a UISplitViewController, with a 2 column layout. If I load the app, it works ok, but if I put the app in the background, and then bring it to foreground, the navigation bar buttons and title just disappear from the splitView controller’s primary view controller. Before going to background: After coming back from background: I also get the following layout issues posted in the debugger consoler: Unable to simultaneously satisfy constraints. Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. ( , , , = UILayoutGuide:0x600003b00a80'TabBarGuide(0x103d18810)'.trailing (active)>, , ) Will attempt to recover by breaking constraint Make a symbolic breakpoint at UIVie
Replies
1
Boosts
0
Views
1.5k
Activity
Aug ’24
Swipe the table view swipe not disappear
why when i Swipe the table view the swipe not disappear? see screenshot It just gets stuck like that and won't come back, why? func tableView(_ tableView: UITableView, trailingSwipeActionsConfigurationForRowAt indexPath: IndexPath) -> UISwipeActionsConfiguration? { let item = realArray[indexPath.row] let callAction = UIContextualAction(style: .normal, title: Call Private, handler: { (action, view, success) in self.service.dialNumber(number: item.telephone, prefixNumber: true) self.service.setupCallerId(firstName: item.firstName, lastName: item.lastName, telephone: item.telephone) }) callAction.backgroundColor = .systemGreen let configuration = UISwipeActionsConfiguration(actions: [callAction]) return configuration }
Replies
0
Boosts
0
Views
497
Activity
Oct ’22