Post

Replies

Boosts

Views

Activity

Reply to Too many Location Updates occuring in rapid succession
There have been sporadic instances where a location update is generated by the device every 0.01 seconds for a period of seconds resulting in hundreds of updates being transmitted from the device. I suppose you are transmitting data based on updates from location services. In that case, your design lacks the ability to know when there is a significant location change compared to the last location and when to transmit this change. Location services are working as expected according to the selected method of precision. You need to know when to transmit that change from the device.
Dec ’22
Reply to 2019 Sample Code
Looks like they're only keeping three years' worth since this https://developer.apple.com/sample-code/wwdc/2019/ doesn't work.
Topic: Machine Learning & AI SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’22
Reply to Autoplay working in Chrome but not in Safari. WHY!?!?!
Autoplay is a user-configurable setting via the Safari address bar for privacy reasons. You don't have programmatic access to this setting.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Running under Parallels crashes XCode apps
Well, debug your app first.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Spotlight Search Function Ventura 13.0.1
Welcome to the Apple Developer ForumsPost your questions, exchange knowledge, and connect with fellow developers and Apple engineers on a variety of software development topics. For questions about using Apple hardware and services, visit Apple Support Communities
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to SecItemCopyMatching (crash)
if (keyData != NULL) { ret = [NSKeyedUnarchiver unarchiveObjectWithData:(__bridge NSData *)keyData]; }
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Build failing - Expo pod files saying, cannot find variables in scope
Goto Expo pod GitHub and report the error there or try prefixing Name with @
Replies
Boosts
Views
Activity
Dec ’22
Reply to Iranian app
Embargo - Sorry.
Replies
Boosts
Views
Activity
Dec ’22
Reply to My app crashes when running as Designed for iPad on macOS 12.6
UIReferenceLibraryViewController needs Mac Catalyst 13.1 and higher, but all of its APs are marked as Mac Catalyst 13.0 and higher. Upgrade your macOS 12 to 13. class func dictionaryHasDefinition(forTerm term: String) -> Bool
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to SwiftUI Material appearance is different on iOS and MacOS?
I don't see any issues. Focus more on the app than on the subtleties of colours you don't have control over.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Deleting core data entity from inside a withAnimation block causes concurrency violation
First, ask yourself, how many times is the animation block called, then ask yourself if core data is a concurrent framework. Coredata calls like this should be in response to a one-off button click or action and a test to determine if the entity being deleted also exists before hand.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Core Data relationship counts not updating in view
Try to keep all DB operations at the TodoList level where you have a timer that triggers a reload which in turn updates TodoList count property which will update the view.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to relighting the real world using RealityKit
You probably need detectable markers to point the directional light towards ...
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Too many Location Updates occuring in rapid succession
There have been sporadic instances where a location update is generated by the device every 0.01 seconds for a period of seconds resulting in hundreds of updates being transmitted from the device. I suppose you are transmitting data based on updates from location services. In that case, your design lacks the ability to know when there is a significant location change compared to the last location and when to transmit this change. Location services are working as expected according to the selected method of precision. You need to know when to transmit that change from the device.
Replies
Boosts
Views
Activity
Dec ’22
Reply to How To Fix CoreData: error: Failed to load mode model named ...
Change  cityContainer = NSPersistentContainer(name: "DMTideCity") to cityContainer = NSPersistentContainer(name: "TideCityForeCast") or cityContainer = NSPersistentContainer(name: "TideForeCast") Please read the Core data documentation for the do's and don'ts
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to I want to exclude iPad devices from being released
Not possible and goes against the Apple release policy. Even if the UI is not designed for iPad, it will run on the iPad but removing one of the following should stop it from showing in the iPad Store.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Dec ’22