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 how to make jupyter support swift
Talk to the jupyter owners over at their site.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jan ’23
Reply to Core Location and Beacon Monitoring in the background.
Contact Apple Developer Support and see the "Code Level Support" option in your account.
Replies
Boosts
Views
Activity
Jan ’23
Reply to Set other font on one Word in Label
Well, continue to add the NS Attrib key for the font and a font reference to the dictionary.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to How do you detect an Apple Watch's distance from the Mac?
Hence the reason why they are called private APIs.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Dec ’22
Reply to Creating a mac app from .jar file
Learning to code in Swift, SwiftUI, or Objective-C will allow you to port the app to the mac if you intend to release it to the mac app store otherwise google how to launch java based app on any OS.
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
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 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 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 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 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 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 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 Iranian app
Embargo - Sorry.
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