Same here.
Post
Replies
Boosts
Views
Activity
Beta 6? It doesn't seem to be out yet. You mean Xcode 16.1 beta 1?
Thanks! Looking forward to it!
That'd be awesome! I do have a lab coming up so hopefully I'll have some info to share!
Feedback links are accessible only to the developers who created them and to Apple engineers.
Will do ASAP. Just tested in the 17.0.1 Simulator and the sheet is showing. Seems like a 17.2 regression. I'll try to test on 17.1.
Exporting and importing worked exactly once for me, then it stopped working. Disabling "Localization Export Supported" doesn't help. Wy not just import the .xliff files? I'm starting to regret moving to Strings Dicts.
It only crashes on a device running b6. Someone mentioned above that the Simulator is actually on beta 5 since Xcode hasn't got an update this week.
See the demo project above. If a project that simple crashes, then your suggestions won't help. My bet is that beta 6 is broken.
No.
Thanks!
Moreover, I always set selectedPerson to a default value at launch.
I'm running the app in the debugger so the app is not being terminated. Once it is in the background, selectedPerson is set to nil but the call stack doesn't reveal anything unfortunately.
I manage to "fix" this behaviour by saving the value when didEnterBackgroundNotification is triggered and setting it back when willEnterForegroundNotification is. This is more of a hack than an actual solution but it was just to demonstrate the issue.
This will also work:
let _ = assignment?.description
Thank you!!! This fixed a similar issue for me!