Post

Replies

Boosts

Views

Activity

Reply to My SwiftUI code is becoming un-SwiftUI-y. I'm looking to make things right again.
Try using a didSet on each of the AppStorage fields. This can either: immediately call updateAvailableWords whenever there's a change set a flag indicating that availableWords is out of date; make availableWords a computed property that updates itself only if that flag is true Also, I would make availableWords private(set) - external clients should not be manipulating it directly.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
May ’24
Reply to My SwiftUI code is becoming un-SwiftUI-y. I'm looking to make things right again.
Try using a didSet on each of the AppStorage fields. This can either: immediately call updateAvailableWords whenever there's a change set a flag indicating that availableWords is out of date; make availableWords a computed property that updates itself only if that flag is true Also, I would make availableWords private(set) - external clients should not be manipulating it directly.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to CloudKit: how to simulate errors
I know this is an old question, but you can test this kind of error-handling logic by temporarily adding code to throw these errors, e.g.: throw CKError(.requestRateLimited, [CKErrorRetryAfterKey: NSNumber(value: 10)
Replies
Boosts
Views
Activity
Nov ’23
Reply to “iPhone” is busy: Making the device ready for development
I was able to solve this using the StackOverflow question mentioned by @Claude31 below. In my case, I opened "Devices and Simulators", then unpaired the device, closed Xcode, opened Xcode, and re-paired the device.
Replies
Boosts
Views
Activity
Jul ’23
Reply to Xcode 15 beta 3 linker issue: ld: warning: duplicate -rpath
This seems to be fixed in Beta 4
Replies
Boosts
Views
Activity
Jul ’23
Reply to Xcode 15 beta 3 linker issue: ld: warning: duplicate -rpath
Seeing this too
Replies
Boosts
Views
Activity
Jul ’23
Reply to Unable to Renew Developer Program Membership
Vist "developer.apple.com" and sign into your account there to renew. Not sure if you can renew from the Developer app.
Replies
Boosts
Views
Activity
Jun ’23