Post

Replies

Boosts

Views

Activity

Comment on A navigationDestination for <App.Entity> was declared earlier on the stack. Only the destination declared closest to the root view of the stack will be used.
thanks, that worked. I'd been splitting out each section on a list to a separate struct file each with their own navigationDestinations so it makes it a bit messy to do this way but that definitely gets rid of the errors and makes scrolling a lot smoother, so looks like ill need to find a better design pattern.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’22
Comment on Calling actor method from another actor
thanks. I ended up implementing a custom queue in the first actor to manage and queue the 'async' calls to the second actor. A decent amount of code, would be nice if actors had some standard functionality to do something like this, as the custom queue has quickly become boilerplate code in almost all of my actors now.
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’22
Comment on Guys I dont know what I am doing here.
effort sounds about right for someone who can already develop swift macOS apps. Some of those requirements are quite involved, and at first glance may only be possible (or not possible) with some cutting edge research/tech and may take significantly longer than expected as far as effort goes. If u want corporate style governance, you will need to pay corporate style prices if anyone is going to do that.
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’22
Comment on SwiftUI NavigationLink freezing when tapped
further on this. I was able to stop the freezing on all of my use cases now with .id(UUID()). needed it on all NavigationLinks and some Lists where there was still freezing. not a full fix because setting .id(UUID()) on a List makes it reload every time it appears which is annoying for users when the list takes time to reload (as in my case). a couple of NavigationLinks needed a static id like .id("someid"), some needed .id(UUID()). not sure why. hopefully gets fixed in the sdk as some point.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Nov ’22
Comment on NSPersistentCloudKitContainer with public database doesn't work and is poorly documented
it seems modifiedAt in iOS15 is now modifedTimpstamp. u need to have a Sortable index on that and queryable one recordName. But I also get the same "Custom zones are not allowed in public DB" when following the CoreData + Cloudkit doc.
Replies
Boosts
Views
Activity
Oct ’21
Comment on How to delete container in CloudKit Dashboard?
just need a flag to get it out of the interface. don't have to delete it. gets confusing with so many junk containers - causes problems and lots of wasted time.
Replies
Boosts
Views
Activity
Oct ’21
Comment on NSPersistentCloudkitContainer Memory Leak -> Crash? (iOS 15 beta 4 & 5)
looks like rate limiting to me. basically impossible to sync a large amount of data in iCloud now
Replies
Boosts
Views
Activity
Jan ’22
Comment on NSPersistentCloudKitContainer - Import failed because applying the accumulated changes hit an unhandled exception
not solved in iOS 15.3 final either. seems it only happens when pulling down data from the private database in the cloud. i'm not getting these issues with the public database.
Replies
Boosts
Views
Activity
Feb ’22
Comment on Allows external storage and iOS 12
is this fixed in iOS 15.4?
Replies
Boosts
Views
Activity
May ’22
Comment on Charts: customising chartYAxis values
I think something like this would be an ideal solution but I was never able to get it to work to parse axis values either. Maybe someone who understands FormatStyle better can help us.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’22
Comment on A navigationDestination for <App.Entity> was declared earlier on the stack. Only the destination declared closest to the root view of the stack will be used.
thanks, that worked. I'd been splitting out each section on a list to a separate struct file each with their own navigationDestinations so it makes it a bit messy to do this way but that definitely gets rid of the errors and makes scrolling a lot smoother, so looks like ill need to find a better design pattern.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’22
Comment on CoreData + CloudKit: Cocoa-Error 134419
same issue. in my case it's about 150mb of data, 1.5million records.
Replies
Boosts
Views
Activity
Aug ’22
Comment on CoreData + CloudKit: Cocoa-Error 134419
I have a feedback assistant entry logged: FB10392936. if u are getting the same, please log one also and reference mine, so they can get more info on it
Replies
Boosts
Views
Activity
Aug ’22
Comment on Calling actor method from another actor
thanks. I ended up implementing a custom queue in the first actor to manage and queue the 'async' calls to the second actor. A decent amount of code, would be nice if actors had some standard functionality to do something like this, as the custom queue has quickly become boilerplate code in almost all of my actors now.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’22
Comment on Loading large number of records into the CloudKit public database
on FB10392936 they asked for some more info, but closed it before I could get the info for them - I had to run the process again - it takes a couple of weeks to run (hence the problem), before it corrupts the CloudKit db. ive updated it with the info they requested. any chance we can get it reopened?
Replies
Boosts
Views
Activity
Sep ’22
Comment on Having issues with DatePicker iOS14
same issue here in iOS16 RC
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Sep ’22
Comment on What is needed to make a successful app.
dont really need a server. can use CloudKit for this
Replies
Boosts
Views
Activity
Sep ’22
Comment on Guys I dont know what I am doing here.
effort sounds about right for someone who can already develop swift macOS apps. Some of those requirements are quite involved, and at first glance may only be possible (or not possible) with some cutting edge research/tech and may take significantly longer than expected as far as effort goes. If u want corporate style governance, you will need to pay corporate style prices if anyone is going to do that.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’22
Comment on SwiftUI NavigationLink freezing when tapped
further on this. I was able to stop the freezing on all of my use cases now with .id(UUID()). needed it on all NavigationLinks and some Lists where there was still freezing. not a full fix because setting .id(UUID()) on a List makes it reload every time it appears which is annoying for users when the list takes time to reload (as in my case). a couple of NavigationLinks needed a static id like .id("someid"), some needed .id(UUID()). not sure why. hopefully gets fixed in the sdk as some point.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’22