Search results for

“build disappears”

51,296 results found

Post

Replies

Boosts

Views

Activity

local notification disappears from notification centre
I have an app that schedules a UILocalNotification on receiving silent push notification. Local notification appears just fine, but then after a period of time (sometimes minutes, sometimes hours) it disappears from the notification center while app still wasn't opened by a user, but it doesn't happen every time (tested multiple times on multiple devices). Occurrs in both iOS 8 and 9.I know that notifications are cleared when you set badge number to 0, but I do so only in -applicationWillEnterForeground: and in -application:didFinishLaunchingWithOptions: if app is not in background state.Any idea what might be causing local notification removal?
0
0
1k
Nov ’15
Dock is not disappearing with HomeScreenLayout payload
We are pushing a HomeScreenlayout payload with no docks array . The behaviour in iOS's is the dock at the bottom is disappeared. But in ipadOS's , dock is still at the bottom with recent apps listed there. Attached is Screenshot for the ipad's behaviour . Payload : 1 PayloadUUID ____________- PayloadType com.apple.homescreenlayout PayloadOrganization MDM PayloadIdentifier _______________ PayloadDisplayName Homescreen Layout Pages BundleID com.apple.mobilephone Type Application BundleID com.apple.Preferences Type Application BundleID com.google.ios.youtube Type Application BundleID com.manageengine.mdm.iosagent Type Application Is it possible remove the dock from iPadOS or is there anything am i missing to disable the dock or distinguish between dock added apps and Recent Apps?
0
0
785
May ’22
NavigationSplitView's toolbar item disappears on resize
When a NavigationSplitView's sidebar has a default selected value, the detail's toolbar item disappears when resizing the view from compact to regular size. @State private var selectedId: String? = anything NavigationSplitView { List(selection: $selectedId) { Text(Sidebar) } } detail: { Text(Detail) .toolbar { Button(Button) {} } } There is no way to get the toolbar item back, other than reloading the view. I have no idea why this happens. In my example I have a dummy Text(Sidebar) without a value, but the problem occurs regardless of its content. Tested on Simulator iPadOS 18.0, and I've seen this happen in our production app.
3
0
839
Sep ’24
Back button disappears on NavigationLink SwiftUI
I'm combining a navigation view and a sheet the following way:struct ContentView: View { @State var showingDetail = false var body: some View { NavigationView { VStack { NavigationLink(destination: DetailView()) { Text(Go to view 2) } VStack { Button(action: { self.showingDetail.toggle() }) { Text(Show Detail) }.sheet(isPresented: $showingDetail) { SheetView() } } } .navigationBarTitle(Back) .navigationBarHidden(true) } } } struct SheetView: View { var body: some View { Text(Detail) } }The sheet works fine, but the new DetailView when you open it, the Back button seems to be there and then after 1 sec it disappears. How can I fix this?
0
0
1.1k
May ’20
Reply to Duplicate output file
hi I'm a noob on ios development. I develop my first app (webview app) and the first build works fine, with only a minor bug. I tried to fix it but the building process failed with the same errors that you have. I decided to roll back the changes but the errors didn't disappear. Can you help me to fix the problem? Any advice is wellcome I use Xcode 12.3
Jan ’21
RealityView content disappears when selecting Lock In Place on visionOS
Hi, I'm experiencing an issue where all RealityView content disappears when the user selects Lock In Place from the window management menu (long press on close button). Follow Me works correctly and this happens in Testflight builds only not reproducible when I run locally I have reproduced this with a minimal project containing nothing but a simple red cube — no custom anchors, no app state, no dependencies. Steps to Reproduce: Open an ImmersiveSpace. A red cube is placed 1m in front of the user via RealityView. Long press the X button on any floating window Select Lock In Place. The cube disappears immediately. Expected: Cube remains visible after window is locked Actual: Cube disappears. Minimal reproducible code: var body: some View { RealityView { content in let cube = ModelEntity( mesh: .generateBox(size: 0.3), materials: [SimpleMaterial(color: .red, isMetallic: false)] ) cube.setPosition(SIMD3(0, 1.5, -1), relativeTo: nil) content.add(cube) } } } Device: Apple Vision
3
0
487
1w
App icons disappearing, can’t access photos
Hello, I was wondering if anyone on here has ever had this issue and knew how to fix it? My iPhone is an iPhone Xr and has the 14.6 software version. I tried rebooting, but every time I do that, different app’s icons disappear, it’s pretty much randomized. Also I can’t access my photos for some reason and Safari is very slow all of the sudden. Idk what to do and I’m hoping someone on here has an answer, thank you.
0
0
396
Jul ’21
MSMessageLiveLayout message bubble disappears
I've implemented MSMessageLiveLayout, and the info and options it allows my app to provide in the transcript are a nice addition. However, it's not totally behaving as I'd hoped, and trying to figure out next step. All testing is live on devices and not Simulator.The structure of the implementation follows the WWDC video on the topic. There's a UIView for the transcript view. To simplify things, it only sets a background color and adds a contextual UILabel so I can distinguish one message from another in the transcript. [There's a more involved layout with the real data, but I simplified it to work out these bugs.] When the live layout draws, it draws to the specified size from contentSizeThatFits. So far, so good.Issue 1. When the message is sent via conversation.send or conversation.insert (tried both), the LiveLayout bubble disappears from the recipient's transcript even though the log shows the live layout's UIView is being initialized. It actually shrinks to nothing via an animation apparently r
1
0
965
Oct ’17
An issue where the content of the dynamic island disappears and is displayed repeatedly
An issue where the content of the dynamic island disappears and is displayed repeatedly The issue is similar to the one below. https://developer.apple.com/forums/thread/717795 Currently using the function to make the bottom home indicator disappear with setNeedsUpdateOfHomeIndicatorAutoHidden In case the status bar information is always displayed at the top As the bottom home indicator appears and disappears, the content of the dynamic island also appears and disappears. Although this is Apple's intention, users who watch the content for a long time may think that this is a bug or an error in the app because the dynamic island at the top repeatedly appears and disappears repeatedly. Our app is an app for viewing documents. At the bottom, there are many users who do not like that the home indicator is always on, so a function (optional) that automatically disappears unless you touch it is implemented. And the status bar information is always displayed at th
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
1.9k
Oct ’22
Notifications disappearing from Settings for the app | iOS 14.6
Hi, we have a live app, we got some reports from the users that they were having issues with push notifications with iOS 14.6. In the case when this issue seems to occur, from the info they provided (along with screenshots) the Settings for the app does not list down the Notifications row at all. We have tried reproducing this on our end but to no success. Also if the users uninstall and reinstall the app, it seems to fix it on their side and the notifications come back and it works again. We have push notifications working, permissions are set up correctly in the info.plist and capabilities are turned on, we did not get a warning or an error related to permissions or push notifications on uploading the last build or releasing it. It generally works as intended. But this seems weird that in the Apple's Settings app it disappears entirely, not just permissions disabled. And reinstalling the app fixes it. Can someone guide us to why this might be happening and what steps to take to fix it or i
0
0
635
Jun ’21
local notification disappears from notification centre
I have an app that schedules a UILocalNotification on receiving silent push notification. Local notification appears just fine, but then after a period of time (sometimes minutes, sometimes hours) it disappears from the notification center while app still wasn't opened by a user, but it doesn't happen every time (tested multiple times on multiple devices). Occurrs in both iOS 8 and 9.I know that notifications are cleared when you set badge number to 0, but I do so only in -applicationWillEnterForeground: and in -application:didFinishLaunchingWithOptions: if app is not in background state.Any idea what might be causing local notification removal?
Replies
0
Boosts
0
Views
1k
Activity
Nov ’15
Dock is not disappearing with HomeScreenLayout payload
We are pushing a HomeScreenlayout payload with no docks array . The behaviour in iOS's is the dock at the bottom is disappeared. But in ipadOS's , dock is still at the bottom with recent apps listed there. Attached is Screenshot for the ipad's behaviour . Payload : 1 PayloadUUID ____________- PayloadType com.apple.homescreenlayout PayloadOrganization MDM PayloadIdentifier _______________ PayloadDisplayName Homescreen Layout Pages BundleID com.apple.mobilephone Type Application BundleID com.apple.Preferences Type Application BundleID com.google.ios.youtube Type Application BundleID com.manageengine.mdm.iosagent Type Application Is it possible remove the dock from iPadOS or is there anything am i missing to disable the dock or distinguish between dock added apps and Recent Apps?
Replies
0
Boosts
0
Views
785
Activity
May ’22
NavigationSplitView's toolbar item disappears on resize
When a NavigationSplitView's sidebar has a default selected value, the detail's toolbar item disappears when resizing the view from compact to regular size. @State private var selectedId: String? = anything NavigationSplitView { List(selection: $selectedId) { Text(Sidebar) } } detail: { Text(Detail) .toolbar { Button(Button) {} } } There is no way to get the toolbar item back, other than reloading the view. I have no idea why this happens. In my example I have a dummy Text(Sidebar) without a value, but the problem occurs regardless of its content. Tested on Simulator iPadOS 18.0, and I've seen this happen in our production app.
Replies
3
Boosts
0
Views
839
Activity
Sep ’24
Back button disappears on NavigationLink SwiftUI
I'm combining a navigation view and a sheet the following way:struct ContentView: View { @State var showingDetail = false var body: some View { NavigationView { VStack { NavigationLink(destination: DetailView()) { Text(Go to view 2) } VStack { Button(action: { self.showingDetail.toggle() }) { Text(Show Detail) }.sheet(isPresented: $showingDetail) { SheetView() } } } .navigationBarTitle(Back) .navigationBarHidden(true) } } } struct SheetView: View { var body: some View { Text(Detail) } }The sheet works fine, but the new DetailView when you open it, the Back button seems to be there and then after 1 sec it disappears. How can I fix this?
Replies
0
Boosts
0
Views
1.1k
Activity
May ’20
Reply to Testflight Build missing
I have created a new app on iTunes and tried uploading my build but it gets disappeared every time without any error prompts or emails.. I have checked my .plist. No usage permission is missing. Please help me if anybody knows how to know what the issue is.
Replies
Boosts
Views
Activity
Apr ’21
Reply to Duplicate output file
hi I'm a noob on ios development. I develop my first app (webview app) and the first build works fine, with only a minor bug. I tried to fix it but the building process failed with the same errors that you have. I decided to roll back the changes but the errors didn't disappear. Can you help me to fix the problem? Any advice is wellcome I use Xcode 12.3
Replies
Boosts
Views
Activity
Jan ’21
RealityView content disappears when selecting Lock In Place on visionOS
Hi, I'm experiencing an issue where all RealityView content disappears when the user selects Lock In Place from the window management menu (long press on close button). Follow Me works correctly and this happens in Testflight builds only not reproducible when I run locally I have reproduced this with a minimal project containing nothing but a simple red cube — no custom anchors, no app state, no dependencies. Steps to Reproduce: Open an ImmersiveSpace. A red cube is placed 1m in front of the user via RealityView. Long press the X button on any floating window Select Lock In Place. The cube disappears immediately. Expected: Cube remains visible after window is locked Actual: Cube disappears. Minimal reproducible code: var body: some View { RealityView { content in let cube = ModelEntity( mesh: .generateBox(size: 0.3), materials: [SimpleMaterial(color: .red, isMetallic: false)] ) cube.setPosition(SIMD3(0, 1.5, -1), relativeTo: nil) content.add(cube) } } } Device: Apple Vision
Replies
3
Boosts
0
Views
487
Activity
1w
App icons disappearing, can’t access photos
Hello, I was wondering if anyone on here has ever had this issue and knew how to fix it? My iPhone is an iPhone Xr and has the 14.6 software version. I tried rebooting, but every time I do that, different app’s icons disappear, it’s pretty much randomized. Also I can’t access my photos for some reason and Safari is very slow all of the sudden. Idk what to do and I’m hoping someone on here has an answer, thank you.
Replies
0
Boosts
0
Views
396
Activity
Jul ’21
Keyboard passcode disappears, swiping up to unlock
Hi Apple Community, I updated my iPhone to IOS 17 developer beta (iPhone 11) and I reset all settings so the iPhone is now like new. I'm trying to enter the passcode by swiping up to unlock but the keyboard disappears in a second. That meant I couldn't enter the passcode to open the iPhone. Please help me.
Replies
2
Boosts
0
Views
1.3k
Activity
Jun ’23
macOS Target: SwiftUI Lists disappear when tapped
I have the following setup: Multiplatform SwiftUI App. When selecting a menu item from the sidebar, it opens correctly on the right side. When tapping something inside the List on the right side, the List disappears. Seems like a bug? When using a ScrollView on the Right side it works.
Replies
1
Boosts
0
Views
994
Activity
Jun ’20
MSMessageLiveLayout message bubble disappears
I've implemented MSMessageLiveLayout, and the info and options it allows my app to provide in the transcript are a nice addition. However, it's not totally behaving as I'd hoped, and trying to figure out next step. All testing is live on devices and not Simulator.The structure of the implementation follows the WWDC video on the topic. There's a UIView for the transcript view. To simplify things, it only sets a background color and adds a contextual UILabel so I can distinguish one message from another in the transcript. [There's a more involved layout with the real data, but I simplified it to work out these bugs.] When the live layout draws, it draws to the specified size from contentSizeThatFits. So far, so good.Issue 1. When the message is sent via conversation.send or conversation.insert (tried both), the LiveLayout bubble disappears from the recipient's transcript even though the log shows the live layout's UIView is being initialized. It actually shrinks to nothing via an animation apparently r
Replies
1
Boosts
0
Views
965
Activity
Oct ’17
An issue where the content of the dynamic island disappears and is displayed repeatedly
An issue where the content of the dynamic island disappears and is displayed repeatedly The issue is similar to the one below. https://developer.apple.com/forums/thread/717795 Currently using the function to make the bottom home indicator disappear with setNeedsUpdateOfHomeIndicatorAutoHidden In case the status bar information is always displayed at the top As the bottom home indicator appears and disappears, the content of the dynamic island also appears and disappears. Although this is Apple's intention, users who watch the content for a long time may think that this is a bug or an error in the app because the dynamic island at the top repeatedly appears and disappears repeatedly. Our app is an app for viewing documents. At the bottom, there are many users who do not like that the home indicator is always on, so a function (optional) that automatically disappears unless you touch it is implemented. And the status bar information is always displayed at th
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
1.9k
Activity
Oct ’22
Notifications disappearing from Settings for the app | iOS 14.6
Hi, we have a live app, we got some reports from the users that they were having issues with push notifications with iOS 14.6. In the case when this issue seems to occur, from the info they provided (along with screenshots) the Settings for the app does not list down the Notifications row at all. We have tried reproducing this on our end but to no success. Also if the users uninstall and reinstall the app, it seems to fix it on their side and the notifications come back and it works again. We have push notifications working, permissions are set up correctly in the info.plist and capabilities are turned on, we did not get a warning or an error related to permissions or push notifications on uploading the last build or releasing it. It generally works as intended. But this seems weird that in the Apple's Settings app it disappears entirely, not just permissions disabled. And reinstalling the app fixes it. Can someone guide us to why this might be happening and what steps to take to fix it or i
Replies
0
Boosts
0
Views
635
Activity
Jun ’21
Siri UI disappear when LAContext dialog show
I'm use INSendPaymentIntent and INSearchForAccountsIntent.It is all work well. But Siri UI disappear when FaceID and TouchID dialog show at iOS 13.x all version include beta.So it can't show response ui.
Replies
4
Boosts
0
Views
1k
Activity
Oct ’19
FIXED Fixed elements disappearing on IOS 16.4 scroll events
FIXED Fixed elements disappearing on IOS 16.4 scroll events After updating to iOS 16.4, the FIXED fixture would disappear on scroll events in my app. Does anyone know what's going on?
Replies
2
Boosts
0
Views
548
Activity
May ’23