Search results for

“build disappears”

51,318 results found

Post

Replies

Boosts

Views

Activity

UISearchController disappearing - Master/Detail Setup
Hi All, I've had a hunt in the forums and couldn't find anything related to this, apologies if I've missed it.I have a Master/Detail app and I'm implementing a UISearchController for the master tableview. I've defined the searchcontroller with this property. let searchController = UISearchController(searchResultsController: nil)I've configured the searchcontroller with this in viewDidLoad. This is the only configuring I'm doing... // Configure the Search functionality searchController.searchResultsUpdater = self searchController.obscuresBackgroundDuringPresentation = false searchController.searchBar.placeholder = Search Items navigationItem.searchController = searchController definesPresentationContext = trueAll well and good and I have the searching working great.Problem is when I select an item and go to the item (the detail side is a tabviewcontroller) and then back to the master view the Search Controller is no longer visible. When I load the app the navigation bar contains the searchcontroller as well as
Topic: UI Frameworks SubTopic: UIKit Tags:
4
0
3.1k
Jun ’20
ekeventviewcontroller done bar button disappear
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { let eventVC = EKEventViewController() eventVC.event = eventItems[indexPath.row] eventVC.allowsEditing = true eventVC.delegate = self self.presentViewController(eventVC, animated: true, completion: nil)}done bar button is not show.....help me
Topic: UI Frameworks SubTopic: UIKit Tags:
1
0
830
Sep ’15
iOS 9.3 beta 3 AppStore app disappear
Hello,I've a very strange behavior with one of my developed applications installed from the AppStore when updating from iOS 9.2.1 to iOS 9.3 beta 3: the application disappears from the home screen.I cannot access the application anymore and, if I reinstall it, the persistent storage has been erased.When I inspect the device logs just after the update to iOS 9.3 beta 3, I can see the following line with the application which have the problem:containermanagerd[75] <Notice>: 0x1f081000 __83 - [MCMCodeSigningMapping _migrateCachedCodeSigningInfoFromBundleContainersToMapping]_block_invoke: Migrating code signing info for com.my_application_with_the_problemWith the application which doesn't have the problem, I can see the following logs:containermanagerd[75] <Notice>: 0x1f115000 - [MCMCodeSigningMapping _onQueue_codeSigningInfoForIdentifier:externalRequest:]: Migrating code signing info from bundle container upon request for com.my_application_without_the_problemcontainermanagerd[75] <Notice
2
0
1.4k
Feb ’16
Localizations disappear in App Store Connect
Hello, We have localized the app page to Spanish(MX), Czech and German. Now on the app page in App Store Connect, these countries are displayed in the list. But after app release, in the app information section, these countries are not appear. Please can you help us to find out, what happened? And how can we make this countries to appear in our localization list. Thanks!
0
0
336
Oct ’20
NSTableView cells disappear on macOS Sonoma
Hi, i have an old popover status bar mac app that i didn't check in the past few macOS releases, so don't know when the problem appeared. On Sonoma i have the following problem: All NSTableViews cells when they are reused the second time, they are blank. The cells are of type view and only one column. If i investigate in the Xcode's view hierarchy I indeed see no subviews in the cell, but if i print the subviews and their frames and their visibility, they are there alright, they exist. All the cells are instantiated from nib and I tried few strategies to use them: register the cell in the tableview and load it with tableView.makeView(withIdentifier: ) no registration, just load them from xib and keep a reference to their instance and feed that to the table when asked no registration, load them from xib when the table asks. This solution actually works but i really need a reference to them that doesn't change, it's a settings screen and someone else is feeding some info to this cells. I'm stuck, I have no idea
Topic: UI Frameworks SubTopic: AppKit
0
0
607
Jun ’24
Disappearing empty Smart App Banner
My team recently released an app to the iOS app store. We are trying to add the Smart App Banner to our website to promote the app, but the banner is not shown. When the page loads, there is a flash of an empty Smart App Banner before it is automatically dismissed. This happens on every page load. If I put use an app ID of other apps the banner appears. I've triple checked that I'm using the correct app ID. So it seems like it is an issue with my app. I can see my app in the App Store, so I know it's available. I've tested on multiple phones.
32
0
1.0.0k
Dec ’22
Right thumbnail bar of QLPreviewController disappeared in iOS 11
Hi,I'm opening a pdf using QLPreviewController, which usually appears with a right thumbnail bar in iOS 10. But when I run the app on iOS 11, the thumbnail bar disappeared. I'm using the following Objective-C code to preview a pdf.-(void)viewDidLoad { if ([QLPreviewController canPreviewItem:[[NSBundle mainBundle] URLForResource:@alice withExtension:@pdf]]) { QLPreviewController *previewController = [[QLPreviewController alloc] init]; previewController.dataSource = self; [previewController.view.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width/1.2, self.view.frame.size.height)]; [self addChildViewController:previewController]; [viewQuickLook addSubview:previewController.view]; [previewController didMoveToParentViewController:self]; } } -(NSInteger) numberOfPreviewItemsInPreviewController:(QLPreviewController *)controller { return 1; } - (id <QLPreviewItem>)previewController:(QLPreviewController *)controller previewItemAtIndex:(NSInteger)index { NSURL *pdfURL = [[NSBundle mainBundl
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
804
Nov ’17
FinderSync Extension UI disappear on macOS 15's Setting
Description We used to use FIFinderSyncController.showExtensionManagementInterface() to navigate to the corresponding Setting's path via a button in our app to make the user enable our FinderSync App. (Or user can navigate manually via System Settings -> Privacy & Security -> Extensions -> Added Extensions themselves in Settings.app) But the UI is now disappearing on macOS 15.0 As a result, if user had previously enabled it, user will now be unable to disable it, and if user had not previously enabled it, user will never be able to enable it. STEPS TO REPRODUCE Create an empty macOS app xcodeprojc, add Finder Sync Extension and run it. Or you can use the repo here to reproduce the issue. https://github.com/Kyle-Ye/MenuHelper
2
0
726
Sep ’24
Reply to new builds not show in app store connect
Can confirm we're having the same issue. We've been trying all day to get a build up to address some iOS 14 issues, and the version shows up for a brief moment in the Activity tab, and then disappears. We've tried uploading from 3 different machines, 2 directly from xcode, and 1 via Fastlane. If anyone has any workarounds that worked, please share. Apple needs to fix this ASAP
Sep ’20
Reply to App built with Release configuration and Xcode15.3 or later version will crashes on real devices(iPhone and iPad)
Hi Apple, Thanks for your reply, i tried to use withUnsafeMutablePointer and the crash disappeared. but we did not figure out the root causes: Why it crashed when building with Release configuration and using Xcode15.3 or newer Xcode versions including Xcode beta 16.1? Why it does not crash when building with Release configuration and using Xcode15.2? Why it does not crash when building with Debug configuration and using any Xcode versions? Why it does not crash if it goes into an extra logic if isUsingCharFilter is true? for more detail see If we do not figure out the root cause described above, it has big risk. cause it maybe a bug of Xcode15.3 and newer Xcode versions. Please help to figure out, thanks for your help.
Topic: App & System Services SubTopic: General Tags:
Aug ’24
SwiftUI popover disappearing when focus changes to its elements on some devices
I have a weird problem using a popover - this behavior is pretty random to me so I somehow think it's a bug - but I cannot reproduce the problem in a smaller project to give you reproducible code. I'm showing a table with a few rows and columns, one of this items per row is editable. If the user taps on the button a popover does appear, presenting a View with a TextField or a TextEditor (tried both with the same result). It all works fine on the iPhone (any situation), it works on the iPad in horizontal format, it works on the iPad in vertical format if there is an external keyboard connected. But - as soon as iOS needs to show the on screen keyboard, the popover disappears and so does the keyboard again. I replaced the popover view with a simplified version, to make sure there is nothing wrong with the popoverView and still got the same behavior. struct SimpleRemarkPopover: View { @Binding var showPopover:Bool @State var comment:String var body: some View { TextEditor(text: $comment) Button(action:
2
0
2.5k
Feb ’22
SandBox Consumable product history disappear after renew subscription
My app offers user to subscript vip & buy gems gem (consumable). After purchase succeed, the receipt will be sent to my backend in order to update the gem amount record. There's a checking for updating the gems number on database. However, I find that there're two problems there's only the latest consumable history. The second time buying the gem will erase the previous record. after subscription / renew subscription, the consumable record is gone I'm using sandbox environment. Do 1 & 2 still exist on Real situation? If 1 & 2 still exist on real situation, I've no idea to update the gem if the network fail (network fail: can't get the receipt after purchase gem, at the same time the renew subscription make the get purchase record disappear)
1
0
551
Jun ’21
UISearchController disappearing - Master/Detail Setup
Hi All, I've had a hunt in the forums and couldn't find anything related to this, apologies if I've missed it.I have a Master/Detail app and I'm implementing a UISearchController for the master tableview. I've defined the searchcontroller with this property. let searchController = UISearchController(searchResultsController: nil)I've configured the searchcontroller with this in viewDidLoad. This is the only configuring I'm doing... // Configure the Search functionality searchController.searchResultsUpdater = self searchController.obscuresBackgroundDuringPresentation = false searchController.searchBar.placeholder = Search Items navigationItem.searchController = searchController definesPresentationContext = trueAll well and good and I have the searching working great.Problem is when I select an item and go to the item (the detail side is a tabviewcontroller) and then back to the master view the Search Controller is no longer visible. When I load the app the navigation bar contains the searchcontroller as well as
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
4
Boosts
0
Views
3.1k
Activity
Jun ’20
ekeventviewcontroller done bar button disappear
func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) { let eventVC = EKEventViewController() eventVC.event = eventItems[indexPath.row] eventVC.allowsEditing = true eventVC.delegate = self self.presentViewController(eventVC, animated: true, completion: nil)}done bar button is not show.....help me
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
1
Boosts
0
Views
830
Activity
Sep ’15
iOS 9.3 beta 3 AppStore app disappear
Hello,I've a very strange behavior with one of my developed applications installed from the AppStore when updating from iOS 9.2.1 to iOS 9.3 beta 3: the application disappears from the home screen.I cannot access the application anymore and, if I reinstall it, the persistent storage has been erased.When I inspect the device logs just after the update to iOS 9.3 beta 3, I can see the following line with the application which have the problem:containermanagerd[75] <Notice>: 0x1f081000 __83 - [MCMCodeSigningMapping _migrateCachedCodeSigningInfoFromBundleContainersToMapping]_block_invoke: Migrating code signing info for com.my_application_with_the_problemWith the application which doesn't have the problem, I can see the following logs:containermanagerd[75] <Notice>: 0x1f115000 - [MCMCodeSigningMapping _onQueue_codeSigningInfoForIdentifier:externalRequest:]: Migrating code signing info from bundle container upon request for com.my_application_without_the_problemcontainermanagerd[75] <Notice
Replies
2
Boosts
0
Views
1.4k
Activity
Feb ’16
NSWindow's shadow disappears after deminiaturize:
Kind of a strange bug I see in an app app i'm working on. My guess is that maybe something going on with Core Animation + Appkit, though I'm not quite sure. Anyone hit this before?
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
3
Boosts
0
Views
509
Activity
Aug ’16
Localizations disappear in App Store Connect
Hello, We have localized the app page to Spanish(MX), Czech and German. Now on the app page in App Store Connect, these countries are displayed in the list. But after app release, in the app information section, these countries are not appear. Please can you help us to find out, what happened? And how can we make this countries to appear in our localization list. Thanks!
Replies
0
Boosts
0
Views
336
Activity
Oct ’20
NSTableView cells disappear on macOS Sonoma
Hi, i have an old popover status bar mac app that i didn't check in the past few macOS releases, so don't know when the problem appeared. On Sonoma i have the following problem: All NSTableViews cells when they are reused the second time, they are blank. The cells are of type view and only one column. If i investigate in the Xcode's view hierarchy I indeed see no subviews in the cell, but if i print the subviews and their frames and their visibility, they are there alright, they exist. All the cells are instantiated from nib and I tried few strategies to use them: register the cell in the tableview and load it with tableView.makeView(withIdentifier: ) no registration, just load them from xib and keep a reference to their instance and feed that to the table when asked no registration, load them from xib when the table asks. This solution actually works but i really need a reference to them that doesn't change, it's a settings screen and someone else is feeding some info to this cells. I'm stuck, I have no idea
Topic: UI Frameworks SubTopic: AppKit
Replies
0
Boosts
0
Views
607
Activity
Jun ’24
Disappearing empty Smart App Banner
My team recently released an app to the iOS app store. We are trying to add the Smart App Banner to our website to promote the app, but the banner is not shown. When the page loads, there is a flash of an empty Smart App Banner before it is automatically dismissed. This happens on every page load. If I put use an app ID of other apps the banner appears. I've triple checked that I'm using the correct app ID. So it seems like it is an issue with my app. I can see my app in the App Store, so I know it's available. I've tested on multiple phones.
Replies
32
Boosts
0
Views
1.0.0k
Activity
Dec ’22
Right thumbnail bar of QLPreviewController disappeared in iOS 11
Hi,I'm opening a pdf using QLPreviewController, which usually appears with a right thumbnail bar in iOS 10. But when I run the app on iOS 11, the thumbnail bar disappeared. I'm using the following Objective-C code to preview a pdf.-(void)viewDidLoad { if ([QLPreviewController canPreviewItem:[[NSBundle mainBundle] URLForResource:@alice withExtension:@pdf]]) { QLPreviewController *previewController = [[QLPreviewController alloc] init]; previewController.dataSource = self; [previewController.view.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width/1.2, self.view.frame.size.height)]; [self addChildViewController:previewController]; [viewQuickLook addSubview:previewController.view]; [previewController didMoveToParentViewController:self]; } } -(NSInteger) numberOfPreviewItemsInPreviewController:(QLPreviewController *)controller { return 1; } - (id <QLPreviewItem>)previewController:(QLPreviewController *)controller previewItemAtIndex:(NSInteger)index { NSURL *pdfURL = [[NSBundle mainBundl
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
804
Activity
Nov ’17
FinderSync Extension UI disappear on macOS 15's Setting
Description We used to use FIFinderSyncController.showExtensionManagementInterface() to navigate to the corresponding Setting's path via a button in our app to make the user enable our FinderSync App. (Or user can navigate manually via System Settings -> Privacy & Security -> Extensions -> Added Extensions themselves in Settings.app) But the UI is now disappearing on macOS 15.0 As a result, if user had previously enabled it, user will now be unable to disable it, and if user had not previously enabled it, user will never be able to enable it. STEPS TO REPRODUCE Create an empty macOS app xcodeprojc, add Finder Sync Extension and run it. Or you can use the repo here to reproduce the issue. https://github.com/Kyle-Ye/MenuHelper
Replies
2
Boosts
0
Views
726
Activity
Sep ’24
Reply to new builds not show in app store connect
Can confirm we're having the same issue. We've been trying all day to get a build up to address some iOS 14 issues, and the version shows up for a brief moment in the Activity tab, and then disappears. We've tried uploading from 3 different machines, 2 directly from xcode, and 1 via Fastlane. If anyone has any workarounds that worked, please share. Apple needs to fix this ASAP
Replies
Boosts
Views
Activity
Sep ’20
Reply to App built with Release configuration and Xcode15.3 or later version will crashes on real devices(iPhone and iPad)
Hi Apple, Thanks for your reply, i tried to use withUnsafeMutablePointer and the crash disappeared. but we did not figure out the root causes: Why it crashed when building with Release configuration and using Xcode15.3 or newer Xcode versions including Xcode beta 16.1? Why it does not crash when building with Release configuration and using Xcode15.2? Why it does not crash when building with Debug configuration and using any Xcode versions? Why it does not crash if it goes into an extra logic if isUsingCharFilter is true? for more detail see If we do not figure out the root cause described above, it has big risk. cause it maybe a bug of Xcode15.3 and newer Xcode versions. Please help to figure out, thanks for your help.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’24
Reply to Some but not all GKTurnBasedMatches disappeared
Today, Feb 22, a new version of my app posted to the App Store. Unfortunately, a few of my matches have disappeared again. Disappearance I believe coincided with the App Store version update.
Topic: Graphics & Games SubTopic: GameKit Tags:
Replies
Boosts
Views
Activity
Feb ’16
SwiftUI popover disappearing when focus changes to its elements on some devices
I have a weird problem using a popover - this behavior is pretty random to me so I somehow think it's a bug - but I cannot reproduce the problem in a smaller project to give you reproducible code. I'm showing a table with a few rows and columns, one of this items per row is editable. If the user taps on the button a popover does appear, presenting a View with a TextField or a TextEditor (tried both with the same result). It all works fine on the iPhone (any situation), it works on the iPad in horizontal format, it works on the iPad in vertical format if there is an external keyboard connected. But - as soon as iOS needs to show the on screen keyboard, the popover disappears and so does the keyboard again. I replaced the popover view with a simplified version, to make sure there is nothing wrong with the popoverView and still got the same behavior. struct SimpleRemarkPopover: View { @Binding var showPopover:Bool @State var comment:String var body: some View { TextEditor(text: $comment) Button(action:
Replies
2
Boosts
0
Views
2.5k
Activity
Feb ’22
Reply to how to delete my ContentView from "Developer Documentation"
Disappeared on its own.
Replies
Boosts
Views
Activity
Jan ’25
SandBox Consumable product history disappear after renew subscription
My app offers user to subscript vip & buy gems gem (consumable). After purchase succeed, the receipt will be sent to my backend in order to update the gem amount record. There's a checking for updating the gems number on database. However, I find that there're two problems there's only the latest consumable history. The second time buying the gem will erase the previous record. after subscription / renew subscription, the consumable record is gone I'm using sandbox environment. Do 1 & 2 still exist on Real situation? If 1 & 2 still exist on real situation, I've no idea to update the gem if the network fail (network fail: can't get the receipt after purchase gem, at the same time the renew subscription make the get purchase record disappear)
Replies
1
Boosts
0
Views
551
Activity
Jun ’21