Posts

Post not yet marked as solved
2 Replies
0 Views
I'm guessing right now the best you can do is present the onboarding when the user opens/creates a document for the first time. Not so bad really.
Post not yet marked as solved
1 Replies
0 Views
And as far as my trails, the ReferenceFileDocument cannot trigger any write operation :(*. You have to call registerUndo on the UndoManager in the environment to trigger a save: @Environment(\.undoManager) var undoManager
Post not yet marked as solved
6 Replies
0 Views
This seems to work, but I'm not sure how brittle it is: for window in UIApplication.shared.windows where window.isKeyWindow { 		window.rootViewController?.dismiss(animated: true, completion: nil) 		break }
Post not yet marked as solved
3 Replies
0 Views
According to Developer Tech Support, the local documents folder only shows up if there is a document in it. It's easy to test: when you delete all the local docs, the folder disappears. Interestingly, the user can also move a doc to the local folder, causing it to show up again.Anyone know why it works this way? Super confusing.
Post marked as solved
2 Replies
0 Views
I'm no expert, but I will try to answer.SwiftUI uses only source code to describe the UI. No storyboard files.SwiftUI is similar to other reactive UI frameworks, which are quite powerful.I think the intent here is to be able to use SwiftUI for all apps. It's pretty cool how you can adopt it piecemeal within your app. cheers
Post marked as solved
3 Replies
0 Views
Looks good, thanks!
Post marked as solved
3 Replies
0 Views
I just tried a window with a transparent title bar, and hiding the close, minimize, resize buttons. That gets me closer, but my main app window is still darkened when presenting via storyboard segue.
Post marked as solved
6 Replies
0 Views
Why isn't that supported? What is it that make aggregate devices more complex in AVAudioEngine?
Post not yet marked as solved
5 Replies
0 Views
Same issue here. I guess we're approaching 3 years.
Post not yet marked as solved
1 Replies
0 Views
Actually, with the VM Tracker, I see an increase in resident memory usage for IOKit, suggesting that perhaps one of the MTLBuffers isn't actually reported until it is used.
Post marked as solved
5 Replies
0 Views
Simply setting Clips To Bounds on the UIToolbar got rid of the border.
Post marked as solved
5 Replies
0 Views
Thanks junkpile. Alas that moves the line to the bottom of the UIToolbar, which doesn't satisfy the design.
Post not yet marked as solved
4 Replies
0 Views
Keep all your templates in headers. I'm guessing "extern template" isn't supported in Metal.You could use explicit specializations if compile time is an issue.