Post

Replies

Boosts

Views

Activity

Reply to Massive difference in time taken to scan contacts/perform action in Xcode versus TestFlight
Click on the project in the project navigator. Click on the target. Click on build settings. Be sure the all tab is selected, just above build options next to the + button Selecting combined next to that makes it easier to compare. In the filter on the right, type "optimization level" without the quotes. Under Apple Clang and Swift compiler there will be drop downs to select the optimization level. For debug configuration the defaults will be none. Release ones "fastest, smallest" and "optimize for speed" respectively. Be aware that setting debug to other than none may impact breakpoint behavior as well as the ability to read variables due to code optimization.
Feb ’24
Reply to Massive difference in time taken to scan contacts/perform action in Xcode versus TestFlight
Click on the project in the project navigator. Click on the target. Click on build settings. Be sure the all tab is selected, just above build options next to the + button Selecting combined next to that makes it easier to compare. In the filter on the right, type "optimization level" without the quotes. Under Apple Clang and Swift compiler there will be drop downs to select the optimization level. For debug configuration the defaults will be none. Release ones "fastest, smallest" and "optimize for speed" respectively. Be aware that setting debug to other than none may impact breakpoint behavior as well as the ability to read variables due to code optimization.
Replies
Boosts
Views
Activity
Feb ’24
Reply to How can you run Instruments/Logger with a TestFlight app?
I've had the impression that instruments only worked with apps running from xcode.
Replies
Boosts
Views
Activity
Feb ’24
Reply to App Store search: "Showing results for..."
I don't know if it helps, but searching for "photo buff" shows your app.
Replies
Boosts
Views
Activity
Feb ’24
Reply to Can't unsubscribe myself from TestFlight
The testflight app should have an option to stop testing.
Replies
Boosts
Views
Activity
Feb ’24
Reply to UNUserNotificationCenter.current().removeDeliveredNotifications() is hanging
You might need to batch the list of messages and do the remove in blocks that don't take so long on a serial thread. The tasks could dispatch the remove action to an appropriate thread if needed. I did that for a potentially long running import process using the Combine framework.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to visionOS: Moving window with a Map causes app to freeze
I notice the log mentions the animation is happening on a background thread. I would look to see if you have anything running in background updating state values. SwifUI seems to be more sensitive to that than UIKit is.
Replies
Boosts
Views
Activity
Feb ’24
Reply to Screen Time Bug
This forum is intended for developers writing applications. You might get better information/help from the consumer community... https://discussions.apple.com/welcome?cid=gn-com-community-lp-get_help
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Simulator Dictionary Unavailable
I'm seeing the same on my work computer. My home system running the same xcode version has dictionaries installed.
Replies
Boosts
Views
Activity
Feb ’24
Reply to visionOS: How to debug Safari / WkWebView?
Have you tried setting the isInspectable property of the WKWebView?
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to @MainActor function not being called on Main thread?
Are you calling this function from the main thread?
Replies
Boosts
Views
Activity
Feb ’24
Reply to What's the purpose of Vstack when we actually don't need it ??
If nothing else, it lets you put a group of vertically stacked views inside a horizontal group, for instance.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Cannot install App using Xcode because of iOS restoring Backup
If the app is showing in springboard, delete it and that should let xcode reinstall it.
Replies
Boosts
Views
Activity
Feb ’24
Reply to Unit test SwiftData migrations
I think this is what you need... https://developer.apple.com/documentation/coredata/nspersistentstorecoordinator/3747532-destroypersistentstore
Replies
Boosts
Views
Activity
Feb ’24
Reply to I updated to iOS 17.4 Developer Beta this AM and my phone is now in SOS and wont come out because it contained information about beta software.
AT&T had a major cell outage today, My understanding is that is resolved now.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’24
Reply to Swift TableView: Saving Text from TextField
Are you configuring the core data container and contexts? Also you need to insert the core data object into a table. You are importing swift data, but using core data.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Feb ’24