Search results for

“build disappears”

51,316 results found

Post

Replies

Boosts

Views

Activity

Reply to Drop down select not working cordova ios 11
I have the same issue when building my app with Xcode 9. Tapping the select drop down displays the list, then disappears and redisplays with a blank list.The following message is displayed in Xcode 9 console:2017-10-06 15:14:20.209882-0600 PK 2.3.0[529:87599] [Warning] Application tried to represent an active popover presentation: <UIPopoverPresentationController: 0x10095a850>If I build my app in Xcode 8 the problem is resolved. However, not using Xcode 9 is not a long term solution and Apple should address this.
Topic: Safari & Web SubTopic: General Tags:
Oct ’17
Reply to Unable to Submit iOS Build for External testing
I've started having this problem too. I already had English US selected. So I added English Canada, but still have the problem.I submit for beta testing, but then either the dialogue disappears and then nothing, or the dialogue stays and I click the Submit for Review button again, but then that causes the support email address to be wiped out.A few times I've had an error saying Sorry but a problem occurred. Try again later. or something to that effect.I've tried uploading new builds, but nothing seems to work now. I really need to get a beta build sent out.
Sep ’17
Context menu item disappears in converted Safari Web Extension
I'm trying to convert an existing Chrome Extension to Safari Web Extension using this converter - https://developer.apple.com/documentation/safariservices/safari_web_extensions/converting_a_web_extension_for_safari. Immediately after convert, xcode opens and I build the project with my developer certificate. Everything looks perfect in Safari: the popup works fine, the context menu item is there, options are there. The moment I restart Safari OR rebuild the project (even without changes), the context menu item disappears. This is how context menu is defined in my context.js script: chrome.runtime.onInstalled.addListener(function() { ttchrome.contextMenus.create({ tttttitle: chrome.i18n.getMessage(contextMenu), ttttcontexts: [selection], ttttid: context + selection tt}); }); chrome.contextMenus.onClicked.addListener(onClickHandler); My manifest.json has this: permissions: [activeTab, storage, contextMenus], I followed these instructions - https://developer.apple.com/documentation/safariservic
3
0
1.8k
Nov ’20
Section's .sheet(…) disappears first time shown when header: is set
I have a peculiar situation, where the first time I present a sheet from a Section that has the header: set, the sheet disappears by itself the first time it is presented. @State private var show = false // … List { Section { Text(foo) } header: { Text(bar) } .sheet(isPresented: $show) { Text(baz) } // just to enable Button(toggle) { show = true } } In Xcode I get this warning when I present the sheet (taken from our live app): Attempt to present <_TtGC7SwiftUI29PresentationHostingControllerVS_7AnyView_: 0x10a819e00> on <_TtGC7SwiftUI19UIHostingControllerGVS_15ModifiedContentVS_7AnyViewVS_12RootModifier__: 0x10a020600> (from <_TtGC7SwiftUI32NavigationStackHostingControllerVS_7AnyView_: 0x10a0cba00>) while a presentation is in progress. Tested on iOS 17.4.1, iPadOS 17.4.0 (Simulator), Xcode 15.3 Previews. Circumstances The circumstances are as following: a Section has to be in a List, and have content:, and header: or footer: set to something, and have the .sheet(…) set on the sectio
2
0
780
Apr ’24
Xcode build fail
Hi, Xcode updated and now I can't build any of my projects, it says: Swift Compiler Error - Unable to load standard library for target 'arm64-apple-ios14.5' The options of running iOS devices on the simulator also disappeared. I run my Xcode on the M1 chip. Does Apple, anyone have a solution? h
1
0
387
Dec ’21
tab bar item disappears when clicked and sim cursor white
Hello, my Xcode app has worked just fine for the last few weeks, I have not changed anything and when I run it now, the tab bar disappears when the associated tab is selected, also stuff like the cursor, navigationbarbackbutton are all invisible or white. How can I fix this, not sure if it's an Xcode bug. tab view: init() { let tabBarAppearance = UITabBarAppearance() tabBarAppearance.configureWithOpaqueBackground() UITabBar.appearance().scrollEdgeAppearance = tabBarAppearance } content view: TabView(selection: $selectedTab){ NavigationView(){ FeedView() } .tabItem { Image(systemName: h.circle) }.tag(1) NavigationView(){ JobsView() } .tabItem { Image(systemName: j.circle) .tint(.gray) }.tag(2) }
0
0
653
Feb ’23
iOS 15 hardware keyboard causing the iOS keyboard disappearing or not showing
Our app recently got rejected couple times by an issue that the keyboard is not appeared (or is disappeared after 1 second) on log in page when the reviewer tried to login by using their iOS 15.0.1 device (iPhone or iPad). We can't reproduce from our devices until we connect a Magic Keyboard to our device and found out the iOS 15 has been changed for the behaviour of hardware keyboard: When running the app in iOS 15 and iOS 13 in Simulator, if the Connect Hardware Keyboard is on, typing in hardware keyboard results differently for iOS 15 and iOS 13, iOS 15 keyboard is disappeared from the Simulator. I connect my Magic Keyboard to my iPhone (iOS 15.0.1) and when I tap on a text field (e.g. in Message app) - there is no iOS keyboard appears on the screen. I also sometimes have luck that the iOS keyboard is appeared when I tap on Message app's text field, if the iPhone is awake from the locked screen. Then I can use the iOS keyboard for inputting, but once I start typing in the Magic Keyboard,
2
0
3.3k
Oct ’21
Collection view cells disappearing when keyboard appears under iOS 16
I have a UICollectionView where sometimes (about 50% of the time) when the keyboard appears, it causes all of the collection view cells to disappear. This only happens on iOS 16, and the collection view itself maintains its size throughout the keyboard presentation and dismissal, but loses all of its cells. The didEndDisplaying UICollectionViewDelegate method is called for each of the cells that were being displayed. I've tried using both diffable data source and UICollectionViewDataSource implementations. I've tried using keyboard notifications to move the collection view up, and I've tried pinning the bottom of the collection view to the top of the keyboard layout guide. The issue persists no matter the implementation. Given that it works on iOS 15 just fine, and that the issue is non-deterministically happening about half the time on iOS 16, I'm inclined to think it's yet another iOS 16 bug. I've debugged thoroughly, reviewed my code over and over, tried different implementations, and made all kin
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
1.7k
Sep ’22
Xcode 7 auto layout view disappearing act
Hi there,Just need to understand if this is a bug or if I'm doing something wrong. In the screenshot you can clearly see I have 3 views. However in the preview for the small iPhone screen, the top view isn't showing. I've been sitting all weekend trying to build a very simple interface but couldn't get it right. Either it displays correctly on a 3.5 inch screen and incorrectly everywhere else, or it displays correctly everywhere else, except on the 3.5 inch screen. I've only picked this up when I decided to build a simple screen such as the one in the screenshot.PS: I have tried to play around with the compression resistance settings, but didn't really pick up any differences.Can someone please help me understand this?http://imgur.com/dP9Dx0h (screenshot)Thanks
1
0
463
Sep ’15
Important item in Keychain seems to have disappeared (after years)
I had the following code in a program that I used to encrypt some important files. I haven't run it in a few years. It used to work, and now it seems the password is mysteriously gone from my Keychain! The return value is now errSecItemNotFound. I'm upset with myself for not backing up the key/password somewhere else. Is there anywhere this could be hiding? Did Apple move it somewhere? I know they created this Passwords app in recent years, but I don't see anything in there with the account string I used. I run the app from Xcode, so maybe it is in the container data somewhere? I do see keychain files under ~/Library. Maybe there is a way to look through old Time Machine backups. Ug. So stressful. Just looking for pointers on where the data might be, and why it might have disappeared. Unfortunately it was not a guessable password, it was a generated 256 bit key, base64 encoded. Perhaps I could crack that with brute force if I'm determined enough... public static func queryGenericPasswordAsString(acco
8
0
432
Mar ’25
Reply to Drop down select not working cordova ios 11
I have the same issue when building my app with Xcode 9. Tapping the select drop down displays the list, then disappears and redisplays with a blank list.The following message is displayed in Xcode 9 console:2017-10-06 15:14:20.209882-0600 PK 2.3.0[529:87599] [Warning] Application tried to represent an active popover presentation: <UIPopoverPresentationController: 0x10095a850>If I build my app in Xcode 8 the problem is resolved. However, not using Xcode 9 is not a long term solution and Apple should address this.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’17
Reply to Unable to Submit iOS Build for External testing
I've started having this problem too. I already had English US selected. So I added English Canada, but still have the problem.I submit for beta testing, but then either the dialogue disappears and then nothing, or the dialogue stays and I click the Submit for Review button again, but then that causes the support email address to be wiped out.A few times I've had an error saying Sorry but a problem occurred. Try again later. or something to that effect.I've tried uploading new builds, but nothing seems to work now. I really need to get a beta build sent out.
Replies
Boosts
Views
Activity
Sep ’17
Context menu item disappears in converted Safari Web Extension
I'm trying to convert an existing Chrome Extension to Safari Web Extension using this converter - https://developer.apple.com/documentation/safariservices/safari_web_extensions/converting_a_web_extension_for_safari. Immediately after convert, xcode opens and I build the project with my developer certificate. Everything looks perfect in Safari: the popup works fine, the context menu item is there, options are there. The moment I restart Safari OR rebuild the project (even without changes), the context menu item disappears. This is how context menu is defined in my context.js script: chrome.runtime.onInstalled.addListener(function() { ttchrome.contextMenus.create({ tttttitle: chrome.i18n.getMessage(contextMenu), ttttcontexts: [selection], ttttid: context + selection tt}); }); chrome.contextMenus.onClicked.addListener(onClickHandler); My manifest.json has this: permissions: [activeTab, storage, contextMenus], I followed these instructions - https://developer.apple.com/documentation/safariservic
Replies
3
Boosts
0
Views
1.8k
Activity
Nov ’20
Content drawn in the CALayer gets disappeared when UIMailComposeViewController appears over the control
Content drawn in the CALayer gets disappeared when UIMailComposeViewController appears over the control. We could reproduce this issue only after upgrading to iOS 11. This works fine in iOS 10 and before.
Replies
0
Boosts
0
Views
349
Activity
Dec ’17
Reply to weak reference surprised to nil
yes , the different run( ) is the same function , and now the fatal error col nil disappears automatically when implement, but i do not know why disappears.
Replies
Boosts
Views
Activity
Jul ’18
Section's .sheet(…) disappears first time shown when header: is set
I have a peculiar situation, where the first time I present a sheet from a Section that has the header: set, the sheet disappears by itself the first time it is presented. @State private var show = false // … List { Section { Text(foo) } header: { Text(bar) } .sheet(isPresented: $show) { Text(baz) } // just to enable Button(toggle) { show = true } } In Xcode I get this warning when I present the sheet (taken from our live app): Attempt to present <_TtGC7SwiftUI29PresentationHostingControllerVS_7AnyView_: 0x10a819e00> on <_TtGC7SwiftUI19UIHostingControllerGVS_15ModifiedContentVS_7AnyViewVS_12RootModifier__: 0x10a020600> (from <_TtGC7SwiftUI32NavigationStackHostingControllerVS_7AnyView_: 0x10a0cba00>) while a presentation is in progress. Tested on iOS 17.4.1, iPadOS 17.4.0 (Simulator), Xcode 15.3 Previews. Circumstances The circumstances are as following: a Section has to be in a List, and have content:, and header: or footer: set to something, and have the .sheet(…) set on the sectio
Replies
2
Boosts
0
Views
780
Activity
Apr ’24
Xcode build fail
Hi, Xcode updated and now I can't build any of my projects, it says: Swift Compiler Error - Unable to load standard library for target 'arm64-apple-ios14.5' The options of running iOS devices on the simulator also disappeared. I run my Xcode on the M1 chip. Does Apple, anyone have a solution? h
Replies
1
Boosts
0
Views
387
Activity
Dec ’21
tab bar item disappears when clicked and sim cursor white
Hello, my Xcode app has worked just fine for the last few weeks, I have not changed anything and when I run it now, the tab bar disappears when the associated tab is selected, also stuff like the cursor, navigationbarbackbutton are all invisible or white. How can I fix this, not sure if it's an Xcode bug. tab view: init() { let tabBarAppearance = UITabBarAppearance() tabBarAppearance.configureWithOpaqueBackground() UITabBar.appearance().scrollEdgeAppearance = tabBarAppearance } content view: TabView(selection: $selectedTab){ NavigationView(){ FeedView() } .tabItem { Image(systemName: h.circle) }.tag(1) NavigationView(){ JobsView() } .tabItem { Image(systemName: j.circle) .tint(.gray) }.tag(2) }
Replies
0
Boosts
0
Views
653
Activity
Feb ’23
iOS 15 hardware keyboard causing the iOS keyboard disappearing or not showing
Our app recently got rejected couple times by an issue that the keyboard is not appeared (or is disappeared after 1 second) on log in page when the reviewer tried to login by using their iOS 15.0.1 device (iPhone or iPad). We can't reproduce from our devices until we connect a Magic Keyboard to our device and found out the iOS 15 has been changed for the behaviour of hardware keyboard: When running the app in iOS 15 and iOS 13 in Simulator, if the Connect Hardware Keyboard is on, typing in hardware keyboard results differently for iOS 15 and iOS 13, iOS 15 keyboard is disappeared from the Simulator. I connect my Magic Keyboard to my iPhone (iOS 15.0.1) and when I tap on a text field (e.g. in Message app) - there is no iOS keyboard appears on the screen. I also sometimes have luck that the iOS keyboard is appeared when I tap on Message app's text field, if the iPhone is awake from the locked screen. Then I can use the iOS keyboard for inputting, but once I start typing in the Magic Keyboard,
Replies
2
Boosts
0
Views
3.3k
Activity
Oct ’21
Reply to ITMS-90000: This bundle is invalid - $message.
After resubmitting the bundle it also disappeared from App Store Connect, but this time even the email with error did not arrive. The bundle just disappeared and that's all.
Topic: Code Signing SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jan ’21
Collection view cells disappearing when keyboard appears under iOS 16
I have a UICollectionView where sometimes (about 50% of the time) when the keyboard appears, it causes all of the collection view cells to disappear. This only happens on iOS 16, and the collection view itself maintains its size throughout the keyboard presentation and dismissal, but loses all of its cells. The didEndDisplaying UICollectionViewDelegate method is called for each of the cells that were being displayed. I've tried using both diffable data source and UICollectionViewDataSource implementations. I've tried using keyboard notifications to move the collection view up, and I've tried pinning the bottom of the collection view to the top of the keyboard layout guide. The issue persists no matter the implementation. Given that it works on iOS 15 just fine, and that the issue is non-deterministically happening about half the time on iOS 16, I'm inclined to think it's yet another iOS 16 bug. I've debugged thoroughly, reviewed my code over and over, tried different implementations, and made all kin
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
1.7k
Activity
Sep ’22
iOS 18 password app shared passwords disappear from my MacBook pro
If I share password with a family member, after sharing it in my iPhone in the new app it disappears from my Mac book pro safari passwords. If I stop sharing the password on the iPhone app it shows up immediately on my Mac book pro safari
Replies
1
Boosts
0
Views
318
Activity
Oct ’24
Xcode 7 auto layout view disappearing act
Hi there,Just need to understand if this is a bug or if I'm doing something wrong. In the screenshot you can clearly see I have 3 views. However in the preview for the small iPhone screen, the top view isn't showing. I've been sitting all weekend trying to build a very simple interface but couldn't get it right. Either it displays correctly on a 3.5 inch screen and incorrectly everywhere else, or it displays correctly everywhere else, except on the 3.5 inch screen. I've only picked this up when I decided to build a simple screen such as the one in the screenshot.PS: I have tried to play around with the compression resistance settings, but didn't really pick up any differences.Can someone please help me understand this?http://imgur.com/dP9Dx0h (screenshot)Thanks
Replies
1
Boosts
0
Views
463
Activity
Sep ’15
VPN status icon disappears from status bar while vpn is connected on iOS 10.1.1
After upgrading from iOS 10.1 to 10.1.1 the VPN icon disappeared from top status bar (in the vicinity of wifi icon) while the VPN is connected using 3rd-party VPN applications.
Replies
1
Boosts
0
Views
1.8k
Activity
Nov ’16
Important item in Keychain seems to have disappeared (after years)
I had the following code in a program that I used to encrypt some important files. I haven't run it in a few years. It used to work, and now it seems the password is mysteriously gone from my Keychain! The return value is now errSecItemNotFound. I'm upset with myself for not backing up the key/password somewhere else. Is there anywhere this could be hiding? Did Apple move it somewhere? I know they created this Passwords app in recent years, but I don't see anything in there with the account string I used. I run the app from Xcode, so maybe it is in the container data somewhere? I do see keychain files under ~/Library. Maybe there is a way to look through old Time Machine backups. Ug. So stressful. Just looking for pointers on where the data might be, and why it might have disappeared. Unfortunately it was not a guessable password, it was a generated 256 bit key, base64 encoded. Perhaps I could crack that with brute force if I'm determined enough... public static func queryGenericPasswordAsString(acco
Replies
8
Boosts
0
Views
432
Activity
Mar ’25