Search results for

“build disappears”

51,305 results found

Post

Replies

Boosts

Views

Activity

SwiftUI - scrollTo Animation Disappears
In the following code snippet, I use proxy.scrollTo() to scroll to a target. In order to animate the scrolling process, I wrapped this function call inside withAnimation. This code works on iOS 16, but on iOS 17, it scroll without any animation. Is this a bug or is there an API change? Thanks! import SwiftUI struct ScrollTest: View { var body: some View { ScrollViewReader { proxy in List { Button(Begin Scroll) { withAnimation { proxy.scrollTo(15, anchor: .top) } } ForEach(1..<50) { i in Text(Item (i)) .id(i) } } } } }
4
0
2.1k
Aug ’23
Website environment disappears suddenly
After I updated to visionOS 26.4, I noticed my website environment would suddenly turn off occasionally while I was watching YouTube in Safari. My M2 AVP was still warm after the update. Is turning off a website environment expected behavior when the headset gets warm (e.g., perhaps to reduce load)? If not, anyone have an idea this might happen?
1
0
245
1w
iOS 18 beta - Cancelling Interactive UICollectionView Layout Transition causes the collectionView to disappear
On iOS18 beta1 & beta2 builds, calling collectionView.cancelInteractiveTransition() after a call to startInteractiveTransition(to:completion:) seems to remove the intermediate transition layout object from the collection view, but doesn't reinstalls the original layout, which results in the collection view disappearing completely. This was not the case in previous iOS versions, so maybe a beta bug? Possibly related, Xcode logs the following error in the console in the exact moment when the collectionView disappears: “Requesting visual style in an implementation that has disabled it, returning nil. Behavior of caller is undefined.” I filled a bug report, together with sample project, just in case FB14057335 Thanks!
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
878
Jun ’24
Reply to App build disappeared on TestFlight page
I'm having the same issue. I tried increasing the build number and still the build appears shortly on the website in the Processing state, and then disappears. After the first upload I got an email with an error message, which I resolved and haven't got any email since, but still any uploaded build is not listed on the website. Then I tried increasing the version string from 1.0 to 1.0.1 and the build number as well, and after reloading the website it showed a disclosure indicator with the label 1.0.1, but completely empty. After reloading the website one more time, even this indicator was gone again, and the website is completely empty like at the start of this whole experiment.
Dec ’24
Label Text disappear and Text Boxes blackout
Hi All,I'm fairly new to Apple iOS Development Team. I've been developing MS and Android Apps for years. I ran into an issue wondering if you could help me. I would be greatly appreciated. We have created a simple signup screen with lable texts on the left and text boxes on the righ like the below:First Name: Text Box for user to enterLast Name: Text Box for user to enterthere are 6 lines and boxes. On most phones, user were able to signup fine. On some users iPhone the Text on the left disappear and the Text Boxes are blackout, so the user can not do anything. These were iPhone X and 11 with iOS 13.3.1. We have tried to update them to iOS 13.4 and it did not fix the issue. Everything else seems to fit on the screen as normal, so we don't think is the screen format. Does anyone know what could cause this issue? Thank you in advance for your help.Best regards,Tim
2
0
781
Jun ’20
Reply to Xcode 13.2 - Internal error : Missing Package Description Module
I have a similar issue. I am using a workspace with many projects and packages, and when updating today to xcode 13.2 all the targets to my packages disappeared and now my projects won't build. The error was missingPackageDescriptionModule. Tried recreating the workspace but still when adding packages, local or remote, their targets are not created. Didn't have any problems with the betas of xcode 13.2.
Dec ’21
Reply to Ensuring own Framework continues to be loadable by other apps, which may be Hardened and/or Sandboxed
I agree with everything you mentioned. But, when you download FxPlug 4 - the examples have Code Signing Inject Base Entitlements enabled by default (I'm trying FxSimpleColorCorrector), and just by disabling Code Signing Inject Base Entitlements the filters no longer work. Filters are not visible by Motion/FCPX. This one build setting change, nothing else, make the filters disappear. Everything else is straight from the FxPlug 4 SDK.I verified that with codesign -d --entitlements :- *.pluginkit command - as long as com.apple.security.get-task-allow entitlement exists Motion sees the filter. Once it's stripped, filter disappears in Motion.Not sure what I'm doing wrong.
Topic: Code Signing SubTopic: General Tags:
Mar ’20
Problem of cell disappearing in UICollection view in ios 10 only
Hi,I am getting a problem where UIcollectionview cell is disappearing after being displayed for a moment. I have debugged the UI and check all the things related to Memory deallocations and hide and show of all views within UIcollectionviewcell.In my app there is one collectionview cell visible one at a time and scroll direction is horizontal, as i scroll for another cell after loading for a moment cell is getting disappeared and balck background of collection view start appearing.Pain of the problem is that it is working fine below iOS 10, i.e. for iOS 9.x or earlier veriosns. The problem is only coming on iOS 10 iPad devices as this app support only iPad devices.Please suggest any solution or any hint, I am stucked in this problem and i have no idea of that of any root cause to that problem.http://screencast.com/t/KJuACeLgfSyHere is the video screencast attached.
3
0
6.2k
Oct ’16
iOS 14 GM Inhouse apps disappear after install
When I install Inhouse apps on iOS 14, I see the progress view on the app icon both on the home screen and in the App Library. But when the installation is completed the app disappears and I can't even find it by searching. In the App Library there is a folder for enterprise apps, but it is empty. One time it showed up in search after some time. When I connect the phone to my Mac and open Devices and Simulators in Xcode I see that the app is installed under Installed apps. One of my colleagues sees the same on his device, but another colleague doesn't see it on his device. I've tried installing both with itms-services://?action=download-manifest&url=https:// and by dragging the .ipa file into Xcode's Devices and Simulators with the same result. I see that there have been problems with Inhouse apps in the iOS 14 betas (https://developer.apple.com/forums/thread/655207), but in my issue the app is installed, but disappears.
2
0
1.8k
Sep ’20
Icon badge numbers disappearing
I have an app that until a few months ago used Game Center for turn-based multiplayer functionality. It now uses a custom-built server instead, and I have turned off Game Center for the last versions of the app in iTunes Connect. However, each time I start some other app that does use Game Center, the system removes whatever badge number I have on my icon. As if my app was still Game Center enabled and had no current matches where there was my turn to act.Is there any way to turn of this lingering Game Center behavior? It ruins the user experience. Or do I need to register a completely new app just to get away from Game Center?
1
0
250
Jun ’15
my app disappeared from App Store
My app was getting a few downloads for about eight weeks but not it has dosappeared. Any ideas?
Replies
0
Boosts
0
Views
399
Activity
Nov ’17
SwiftUI - scrollTo Animation Disappears
In the following code snippet, I use proxy.scrollTo() to scroll to a target. In order to animate the scrolling process, I wrapped this function call inside withAnimation. This code works on iOS 16, but on iOS 17, it scroll without any animation. Is this a bug or is there an API change? Thanks! import SwiftUI struct ScrollTest: View { var body: some View { ScrollViewReader { proxy in List { Button(Begin Scroll) { withAnimation { proxy.scrollTo(15, anchor: .top) } } ForEach(1..<50) { i in Text(Item (i)) .id(i) } } } } }
Replies
4
Boosts
0
Views
2.1k
Activity
Aug ’23
Website environment disappears suddenly
After I updated to visionOS 26.4, I noticed my website environment would suddenly turn off occasionally while I was watching YouTube in Safari. My M2 AVP was still warm after the update. Is turning off a website environment expected behavior when the headset gets warm (e.g., perhaps to reduce load)? If not, anyone have an idea this might happen?
Replies
1
Boosts
0
Views
245
Activity
1w
why bluetooth profile for ios disappeared?
https://developer.apple.com/feedback-assistant/profiles-and-logs/ There is no iOS profile in this link.
Replies
1
Boosts
0
Views
65
Activity
Mar ’26
iOS 18 beta - Cancelling Interactive UICollectionView Layout Transition causes the collectionView to disappear
On iOS18 beta1 & beta2 builds, calling collectionView.cancelInteractiveTransition() after a call to startInteractiveTransition(to:completion:) seems to remove the intermediate transition layout object from the collection view, but doesn't reinstalls the original layout, which results in the collection view disappearing completely. This was not the case in previous iOS versions, so maybe a beta bug? Possibly related, Xcode logs the following error in the console in the exact moment when the collectionView disappears: “Requesting visual style in an implementation that has disabled it, returning nil. Behavior of caller is undefined.” I filled a bug report, together with sample project, just in case FB14057335 Thanks!
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
878
Activity
Jun ’24
Reply to App build disappeared on TestFlight page
I'm having the same issue. I tried increasing the build number and still the build appears shortly on the website in the Processing state, and then disappears. After the first upload I got an email with an error message, which I resolved and haven't got any email since, but still any uploaded build is not listed on the website. Then I tried increasing the version string from 1.0 to 1.0.1 and the build number as well, and after reloading the website it showed a disclosure indicator with the label 1.0.1, but completely empty. After reloading the website one more time, even this indicator was gone again, and the website is completely empty like at the start of this whole experiment.
Replies
Boosts
Views
Activity
Dec ’24
Label Text disappear and Text Boxes blackout
Hi All,I'm fairly new to Apple iOS Development Team. I've been developing MS and Android Apps for years. I ran into an issue wondering if you could help me. I would be greatly appreciated. We have created a simple signup screen with lable texts on the left and text boxes on the righ like the below:First Name: Text Box for user to enterLast Name: Text Box for user to enterthere are 6 lines and boxes. On most phones, user were able to signup fine. On some users iPhone the Text on the left disappear and the Text Boxes are blackout, so the user can not do anything. These were iPhone X and 11 with iOS 13.3.1. We have tried to update them to iOS 13.4 and it did not fix the issue. Everything else seems to fit on the screen as normal, so we don't think is the screen format. Does anyone know what could cause this issue? Thank you in advance for your help.Best regards,Tim
Replies
2
Boosts
0
Views
781
Activity
Jun ’20
Reply to Xcode 13.2 - Internal error : Missing Package Description Module
I have a similar issue. I am using a workspace with many projects and packages, and when updating today to xcode 13.2 all the targets to my packages disappeared and now my projects won't build. The error was missingPackageDescriptionModule. Tried recreating the workspace but still when adding packages, local or remote, their targets are not created. Didn't have any problems with the betas of xcode 13.2.
Replies
Boosts
Views
Activity
Dec ’21
Reply to Successfully uploaded iOS app builds don't appear in App Store Connect
We're having a somewhat similar issue where we upload two builds (two variants of our app with different bundle ids), one gets associated with the wrong app and the other disappears completely. We get an error email about the first (that gets associated with the wrong app) but nothing about the second. Also using beta 7.
Replies
Boosts
Views
Activity
Sep ’25
Reply to How to implement a swipeable NSTableVIew cell?
How odd. They don't seem to disappear here. Let me investigate further. Thanks for telling me it should disappear.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Sep ’15
Reply to Ensuring own Framework continues to be loadable by other apps, which may be Hardened and/or Sandboxed
I agree with everything you mentioned. But, when you download FxPlug 4 - the examples have Code Signing Inject Base Entitlements enabled by default (I'm trying FxSimpleColorCorrector), and just by disabling Code Signing Inject Base Entitlements the filters no longer work. Filters are not visible by Motion/FCPX. This one build setting change, nothing else, make the filters disappear. Everything else is straight from the FxPlug 4 SDK.I verified that with codesign -d --entitlements :- *.pluginkit command - as long as com.apple.security.get-task-allow entitlement exists Motion sees the filter. Once it's stripped, filter disappears in Motion.Not sure what I'm doing wrong.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Mar ’20
iOS 13 reminders made the reminders on my other devices disappear
I just installed iOS 13 public beta and when I went to use the reminders app it asked me to update now or later. When I updated the reminders on all my other devices, iPhone 6, iPad mini 3 and MacBook Air all disappeared 😟 Not happy about this because none of my other devices will be getting an update.
Replies
1
Boosts
0
Views
859
Activity
Aug ’19
Problem of cell disappearing in UICollection view in ios 10 only
Hi,I am getting a problem where UIcollectionview cell is disappearing after being displayed for a moment. I have debugged the UI and check all the things related to Memory deallocations and hide and show of all views within UIcollectionviewcell.In my app there is one collectionview cell visible one at a time and scroll direction is horizontal, as i scroll for another cell after loading for a moment cell is getting disappeared and balck background of collection view start appearing.Pain of the problem is that it is working fine below iOS 10, i.e. for iOS 9.x or earlier veriosns. The problem is only coming on iOS 10 iPad devices as this app support only iPad devices.Please suggest any solution or any hint, I am stucked in this problem and i have no idea of that of any root cause to that problem.http://screencast.com/t/KJuACeLgfSyHere is the video screencast attached.
Replies
3
Boosts
0
Views
6.2k
Activity
Oct ’16
iOS 14 GM Inhouse apps disappear after install
When I install Inhouse apps on iOS 14, I see the progress view on the app icon both on the home screen and in the App Library. But when the installation is completed the app disappears and I can't even find it by searching. In the App Library there is a folder for enterprise apps, but it is empty. One time it showed up in search after some time. When I connect the phone to my Mac and open Devices and Simulators in Xcode I see that the app is installed under Installed apps. One of my colleagues sees the same on his device, but another colleague doesn't see it on his device. I've tried installing both with itms-services://?action=download-manifest&url=https:// and by dragging the .ipa file into Xcode's Devices and Simulators with the same result. I see that there have been problems with Inhouse apps in the iOS 14 betas (https://developer.apple.com/forums/thread/655207), but in my issue the app is installed, but disappears.
Replies
2
Boosts
0
Views
1.8k
Activity
Sep ’20
Icon badge numbers disappearing
I have an app that until a few months ago used Game Center for turn-based multiplayer functionality. It now uses a custom-built server instead, and I have turned off Game Center for the last versions of the app in iTunes Connect. However, each time I start some other app that does use Game Center, the system removes whatever badge number I have on my icon. As if my app was still Game Center enabled and had no current matches where there was my turn to act.Is there any way to turn of this lingering Game Center behavior? It ruins the user experience. Or do I need to register a completely new app just to get away from Game Center?
Replies
1
Boosts
0
Views
250
Activity
Jun ’15