Post

Replies

Boosts

Views

Activity

Comment on Lost data in UserDefaults
So far, I've had no user reports of this happening after iOS 15.4 update. Has anyone else had the bug reported from a user on 15.4? I hope it's been fixed, and REALLY wish Apple would start acknowledging their open bugs. I want to be compassionate regarding possible workplace slowdowns, but without updates about what's going on, I get the sinking feeling that a bunch of Apple folk are staying home in their PJs ;-)
Mar ’22
Comment on Lost data in UserDefaults
What iOS are your customers on when they experience this bug? I've had only a few reports of missing data in the past few weeks so I'd hoped it was fixed in 15.3.1 Without guidance from Apple, it's a guessing game. But the more info we can share with each other, the better our guesses can be.
Mar ’22
Comment on DrawTogether example code?
For anyone else struggling, I changed the startSharing function in Canvas as below, and the code is running now. I'm not very current on concurrency, so I may have broken more than I fixed. `func startSharing()  {         Task{            try await DrawTogether().activate()}     }`
Sep ’21
Comment on DrawTogether example code?
Thanks for the info @sabyankees, but I'm still having trouble running this sample code using Xcode 13 and iOS 15.1 I've changed: .controlProminence(.increased) TO .buttonStyle(.borderedProminent) (thanks @anthroDevChris) And changed: "async" TO "Task" And changed: var tasks = Set<Task.Handle<Void, Never>>() TO var tasks = Set<Task<Void, Never>>() But I still get "'async' call in a function that does not support concurrency" I don't understand what you meant by changes to 'tasks.insert'. Could someone be even more specific to help me get started?
Sep ’21