Search results for

“build disappears”

51,283 results found

Post

Replies

Boosts

Views

Activity

"All Ratings and Reviews" have disappeared
The All ratings and reviews have disappeared from the app store when viewing it on the appstore 10 or appstore 11. Instead, we only see our ratings for the current version which is a fraction of what we have built up over the years. We also never chose to reset our total # of ratings. It was my understanding that the total number of ratings will be the starting number in appstore 11. Was that the wrong assumption? Apps like Facebook with 30-40K ratings are down to couple hundred. I guess this is a global issue. Any thoughts?
7
0
4k
Sep ’17
UIAlertController disappearing instantaneously for iOS 15
I am using EAAccessoryManager to connect to bluetooth device. The code is working correctly but for iOS 15 when there is an error the error message disappears straight away. here is the code that I am EAAccessoryManager *accessoryManager = [EAAccessoryManager sharedAccessoryManager]; NSPredicate *predicate = [NSPredicate predicateWithFormat:@self BEGINSWITH %@ OR self BEGINSWITH %@, FIRSTVALUE, SECONDVALUE]; [accessoryManager showBluetoothAccessoryPickerWithNameFilter:predicate completion:completionBlock]; The completion block is hit after the AlertDialog has disappeared. I have tried setting it to nil and still get the same behaviour for iOS 15 The bluethooth device shows the following message for iOS 14 and below. For iOS 15 it shows for a split second and dismisses itself. This is the error I am getting EABluetoothAccessoryPickerErrorDomain Any one know why iOS 15 might be having this behaviour. Any help would be appriciated.
2
0
589
Nov ’21
PresentationDragIndicator disappears in dark mode
Hello. I'm implementing a webview in my app. Recently I'm using presentationDetents(_:) which is supported in iOS 16. And I found a problem in this Instance Method. PresentationDrag Indicator disappears in dark mode. It does not disappear when used in a common View. However, when I use it in htmlView(), this phenomenon appears. [Even if I set Css for dark mode in htmlView(), the result is the same.] I would be grateful if you could tell me how to solve this. Is there any way to control the style of presentationDetents (frame) or PresentationDragIndicator? (I'm aware of the parameters that hide or show the Indicator, but I'm asking if I can have more control over it.) in MainView: ... ... .sheet(isPresented: $activeSheet) { VStack(){ HTMLView(html: urlToOpenInSheet) .presentationDetents([.medium, .large]) .padding(5) } } ... ... in htmlView: struct HTMLView: UIViewRepresentable { let html: String class CoordinatorHTML : NSObject, UITextViewDelegate { func textView(_ textView: UITextView, shou
1
0
928
Feb ’23
How to reliably link a new build to newly-created IAP? After submitting, selected IAP “disappear” from the submission
Hi everyone, I’m trying to submit my first release with In-App Purchases, but I can’t keep the IAP attached to the submission. Status: Not published yet (first release) Version: 5.0.0 (multiple builds: (7), (8), etc.) What happens I upload a new build and select it for version 5.0.0. I go to Add for Review and select my newly created IAP (auto-renewable subscriptions). I submit the version. When I re-open the submission details, the IAP section is empty (they no longer appear as “Included in this submission”). The result is a double failure: App rejection (Guideline 2.1 – “IAP not found in the submitted binary”). Each IAP is also rejected for lack of a binary in its review context. It looks like the IAP and the build keep getting detached from each other after I submit. Since this is my first version, I’ve tried changing builds and even editing version metadata, but it still feels like I’m just “editing the first version” rather than creating a fresh link between this binar
0
0
134
Sep ’25
Fast scrolling makes collectionViewCell disappear.
I am making tvOS app, where I have collectionViewCell is embedded inside tableViewCell.If I scroll gently/slowly from top to bottom or left to right then scroll to bottom then none of cell disappears.But If scroll fastly from left to right then scroll to bottom, it makes CollectionViewCell disappear.
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
360
May ’17
Default Container Disappeared From Dashboard
Container for my app disappeared from dashboard suddenly.I tested new subscriptions and take a brake after than, later when I opened a dashboard, my container is disappeared.But, I see containers for other apps. I also see that one more container disappered for test app which I didn't touch for months.I still can see my iCloud Containers in the Member Center in the Certificates, Identifiers and Profiles -> Identifiers tab -> iCloud Containers.I see containers for both applictions.I wouldn't care if this container was custom one. But's it's default container for my application and it tied with Bundle ID. I making an update, so I can't change my Bundle ID.I also won't use custom container.What I need to do to fix the problem?
7
0
1.2k
Jun ’16
Activity disappeared since ios 9.1
Hi, One of the activity provied by my application disappeared from the activities table after the update to ios 9.1.I tested this behavior in the simulator and on several devices. With ios 8.4 the activity appears, with 9,1 gone.Any idea?Thank you in advance,
Replies
0
Boosts
0
Views
291
Activity
Nov ’15
"All Ratings and Reviews" have disappeared
The All ratings and reviews have disappeared from the app store when viewing it on the appstore 10 or appstore 11. Instead, we only see our ratings for the current version which is a fraction of what we have built up over the years. We also never chose to reset our total # of ratings. It was my understanding that the total number of ratings will be the starting number in appstore 11. Was that the wrong assumption? Apps like Facebook with 30-40K ratings are down to couple hundred. I guess this is a global issue. Any thoughts?
Replies
7
Boosts
0
Views
4k
Activity
Sep ’17
UIAlertController disappearing instantaneously for iOS 15
I am using EAAccessoryManager to connect to bluetooth device. The code is working correctly but for iOS 15 when there is an error the error message disappears straight away. here is the code that I am EAAccessoryManager *accessoryManager = [EAAccessoryManager sharedAccessoryManager]; NSPredicate *predicate = [NSPredicate predicateWithFormat:@self BEGINSWITH %@ OR self BEGINSWITH %@, FIRSTVALUE, SECONDVALUE]; [accessoryManager showBluetoothAccessoryPickerWithNameFilter:predicate completion:completionBlock]; The completion block is hit after the AlertDialog has disappeared. I have tried setting it to nil and still get the same behaviour for iOS 15 The bluethooth device shows the following message for iOS 14 and below. For iOS 15 it shows for a split second and dismisses itself. This is the error I am getting EABluetoothAccessoryPickerErrorDomain Any one know why iOS 15 might be having this behaviour. Any help would be appriciated.
Replies
2
Boosts
0
Views
589
Activity
Nov ’21
PresentationDragIndicator disappears in dark mode
Hello. I'm implementing a webview in my app. Recently I'm using presentationDetents(_:) which is supported in iOS 16. And I found a problem in this Instance Method. PresentationDrag Indicator disappears in dark mode. It does not disappear when used in a common View. However, when I use it in htmlView(), this phenomenon appears. [Even if I set Css for dark mode in htmlView(), the result is the same.] I would be grateful if you could tell me how to solve this. Is there any way to control the style of presentationDetents (frame) or PresentationDragIndicator? (I'm aware of the parameters that hide or show the Indicator, but I'm asking if I can have more control over it.) in MainView: ... ... .sheet(isPresented: $activeSheet) { VStack(){ HTMLView(html: urlToOpenInSheet) .presentationDetents([.medium, .large]) .padding(5) } } ... ... in htmlView: struct HTMLView: UIViewRepresentable { let html: String class CoordinatorHTML : NSObject, UITextViewDelegate { func textView(_ textView: UITextView, shou
Replies
1
Boosts
0
Views
928
Activity
Feb ’23
Apple Pencil disappeared from Bluetooth list
Someone help! I lost my Apple Pencil 2 days ago and when I went to troubleshoot to find it, the Apple Pencil disappeared from my Bluetooth pairing list?? I don’t know what happened, if someone could help, I would appreciate it a lot!
Replies
0
Boosts
0
Views
550
Activity
Feb ’23
How to reliably link a new build to newly-created IAP? After submitting, selected IAP “disappear” from the submission
Hi everyone, I’m trying to submit my first release with In-App Purchases, but I can’t keep the IAP attached to the submission. Status: Not published yet (first release) Version: 5.0.0 (multiple builds: (7), (8), etc.) What happens I upload a new build and select it for version 5.0.0. I go to Add for Review and select my newly created IAP (auto-renewable subscriptions). I submit the version. When I re-open the submission details, the IAP section is empty (they no longer appear as “Included in this submission”). The result is a double failure: App rejection (Guideline 2.1 – “IAP not found in the submitted binary”). Each IAP is also rejected for lack of a binary in its review context. It looks like the IAP and the build keep getting detached from each other after I submit. Since this is my first version, I’ve tried changing builds and even editing version metadata, but it still feels like I’m just “editing the first version” rather than creating a fresh link between this binar
Replies
0
Boosts
0
Views
134
Activity
Sep ’25
Xcode 15.3 package dependencies disappear
when switch branch in terminal, the package dependencies alway disappear. I have to restart Xcode to resolve this issue every time I switch the branch.
Replies
2
Boosts
0
Views
898
Activity
Apr ’24
Contact picture disappears iOS 11
I have noticed that if I add a picture to a contact in messaging or in the contacts app it will show up for a few seconds and then disappear. I have switched where my contacts are synced to hoping that would solve the issue. Any ideas Apple??
Replies
1
Boosts
0
Views
671
Activity
Sep ’17
create new version sign disappear
I have updated my app yesterday and it was updated successfully but now app profile shows me both the new and last version ready for sale and create new version + sign is disappeared. Why this is happen?
Replies
0
Boosts
0
Views
343
Activity
Jul ’20
Push Notification Disappearing from Notification Center
When app is running in foreground or the app is launched then immediately all the push notification belongs to that app disappearing from Notification Group. How to retain the push notification history when app is running?
Replies
0
Boosts
0
Views
539
Activity
Apr ’23
Fast scrolling makes collectionViewCell disappear.
I am making tvOS app, where I have collectionViewCell is embedded inside tableViewCell.If I scroll gently/slowly from top to bottom or left to right then scroll to bottom then none of cell disappears.But If scroll fastly from left to right then scroll to bottom, it makes CollectionViewCell disappear.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
360
Activity
May ’17
Reply to TestFlight doesn't accept build for external testing: "This build is not allowed for external testing."
Me too! I'm wondering if it is because I am building using the latest Xcode beta so I can build for iOS 11. But I noticed another problem - sometimes I get that message and sometimes the submit button just hangs and then the Feedbackt email address disappears from the Test Information page. Very strange.
Replies
Boosts
Views
Activity
Jun ’17
Reply to ITMS-90000: This bundle is invalid - $message.
Me too from HK! Thought it was my problem. I passed Validation and Distributed to appstore. The build appears blank in testflight, but after sometime it disappear. After found this posts, now is Apple’s problem.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’21
Default Container Disappeared From Dashboard
Container for my app disappeared from dashboard suddenly.I tested new subscriptions and take a brake after than, later when I opened a dashboard, my container is disappeared.But, I see containers for other apps. I also see that one more container disappered for test app which I didn't touch for months.I still can see my iCloud Containers in the Member Center in the Certificates, Identifiers and Profiles -> Identifiers tab -> iCloud Containers.I see containers for both applictions.I wouldn't care if this container was custom one. But's it's default container for my application and it tied with Bundle ID. I making an update, so I can't change my Bundle ID.I also won't use custom container.What I need to do to fix the problem?
Replies
7
Boosts
0
Views
1.2k
Activity
Jun ’16
XCode Simulator Platforms Keep Disappearing...
With Xcode 26.3, and beta 26.4 (under macOS 26.4 Beta (25E5223i)) my loaded platforms for canvas and simulators keep disappearing. Try to add platforms, and the download just sits there.
Replies
0
Boosts
0
Views
65
Activity
3w