Posts

Post not yet marked as solved
25 Replies
13k Views
How do I hide the separation lines inside Lists in SwiftUI for iOS 14? Previously I could use UITableView.appearance().separatorStyle = .none but this doesn't seem to work anymore.
Posted Last updated
.
Post not yet marked as solved
4 Replies
1.5k Views
No matter what I try, if it's my own app(s) or new projects created in Xcode, when building and launching on macOS I only get a Black Screen with the following console logs[AXLoading] Failed to load item AXCodeItem<0x60000263a160> [Rank:6000] PhotosFramework [AXBundle name:/System/iOSSupport/System/Library/AccessibilityBundles/PhotosFramework.axbundle/PhotosFramework] [Platforms and Targets:{ iOS = Photos; } Framework]. error: Error Domain=AXLoading Code=0 "URL does not exist: file:///System/iOSSupport/System/Library/AccessibilityBundles/PhotosFramework.axbundle" UserInfo={NSLocalizedDescription=URL does not exist: file:///System/iOSSupport/System/Library/AccessibilityBundles/PhotosFramework.axbundle}[AXLoading] Failed to load item AXCodeItem<0x600002636760> [Rank:6000] StoreKitFramework [AXBundle name:/System/iOSSupport/System/Library/AccessibilityBundles/StoreKitFramework.axbundle/StoreKitFramework] [Platforms and Targets:{ iOS = StoreKit; } Framework]. error: Error Domain=AXLoading Code=0 "URL does not exist: file:///System/iOSSupport/System/Library/AccessibilityBundles/StoreKitFramework.axbundle" UserInfo={NSLocalizedDescription=URL does not exist: file:///System/iOSSupport/System/Library/AccessibilityBundles/StoreKitFramework.axbundle}
Posted Last updated
.
Post not yet marked as solved
3 Replies
1.6k Views
I’d like to know, how I can setup a toolbar inside a sheet using SwiftUI on macOS. I tried adding a NavigationView and used the following Code, but the top area of the sheet is always empty. .toolbar {                 ToolbarItem(placement: .confirmationAction) {                     Button(action: { //                      Do stuff                         self.presentationMode.wrappedValue.dismiss()                     }                     ) {                         Label("Done", systemImage: "checkmark.fill")                     }                 }                 ToolbarItem(placement: .cancellationAction) {                     Button(action: {                         self.presentationMode.wrappedValue.dismiss()                     }                     ) {                         Label("Cancel", systemImage: "checkmark.fill")                     }                 }             }
Posted Last updated
.
Post not yet marked as solved
4 Replies
1.4k Views
Since a few days I'm unable to deploy changes to the production database. I can edit record types on development database, but when I try do deploy them it says "No changes".
Posted Last updated
.
Post not yet marked as solved
1 Replies
428 Views
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.
Posted Last updated
.
Post not yet marked as solved
5 Replies
887 Views
My two apps, that worked perfectly in Dark Mode since Beta 6 are now broken and show light content in Dark Mode. I use custom Color Assets and everything worked fine before ...
Posted Last updated
.
Post not yet marked as solved
1 Replies
599 Views
For 2 days I'm trying to upload an update of my app for macOS, but every time the build disappears after uploading. I don't receive any mails, what the issue is, it just disappears. Does anyone have a solution?
Posted Last updated
.
Post not yet marked as solved
0 Replies
527 Views
For three days in a row I can't edit one of my In App Purchases. I updated the promo picture before. Inside the App Store Connect table of purchases it appears "Rejected", but it says "Approved". On the App Store I can see the new picture, but inside App Store Connect I can't edit the purchase, because I get a page with empty fields and Internal Server Error.Apple Support hasn't replied for days now ... The problem is, that also my app is in review for two days now ... nothing happens. Can anyone help?
Posted Last updated
.
Post not yet marked as solved
2 Replies
797 Views
Hi,I'm working on a collaboration app and I already implemented Push Notificatios for private databases, so if other people change "my" data, I get a notification. But the other way around it doesn't work so easily, because CKQuerySubscription isn't available for shared databases. Does anyone have a solution for that?
Posted Last updated
.