Posts

Post not yet marked as solved
26 Replies
I have the same issue. My new App supports iOS 17 (and later). How shall I create a 5.5" screenshot. There are no old devices or simulators with 5.5" display supporting iOS 17...
Post not yet marked as solved
17 Replies
Same problem here. Simple SwiftUI App on M1 under Rosetta. Now graphics code at all. Very annoying.
Post marked as solved
3 Replies
It seems like now I have found the real reason for this strange behaviour... My App was a AppKit application before the migration to SwiftUI. After some searching in the project settings I found under the macOS build target in "Info / Custom macOS Application Target Properties" the key "Main nib file base name" which contained "MyApp.nib". It looks like sometimes during the start of the App this file was searched and not found and sometimes maybe the start of the App was faster so it was not searched for... However: After deleting the value, the error didn't reappear. Let's hope this is the final solution...
Post marked as solved
3 Replies
Unfortunately the problem was NOT solved... I've got the problem again and it happens most of the time on my 2021 MacBook Pro (M1 Max) and not so often on my 2020 MacBook Pro (M1). So it looks like a timing problem...
Post marked as solved
3 Replies
I found the problem :-) During the initialization of the model of the @main view I did some longer running tasks to initialize some background processes. Now I run them on a background task using perform{} and the bug is gone. The reason why the bug appeared on my new, faster hardware obviously was the addition of more data structures to be initialized, so it took longer.
Post not yet marked as solved
12 Replies
What??? I'm trying to delete some test containers, which clutter my dashboard and are not used anymore, and I don't find a way to delete them. After years, this is surreal...
Post not yet marked as solved
6 Replies
I have this problem, too. I can't find a "SwiftUI" way to open new windows having a different layout than the main window as action of a Button or Menu. This is a very basic thing, so this should be possible in SwiftUI 2.
Post marked as solved
8 Replies
Re-tested after installing MacOS 11.0 Beta 7 (20A5374g). The example code doesn’t crash any more, the bug seems to be fixed. Thanks to all for testing and so giving me the hint, that it's a MacOS beta bug. :-)
Post marked as solved
8 Replies
Filed Apple bug report (FB8680646)...
Post marked as solved
8 Replies
Did 2 Checks now: MacOS 11 beta (20A5364e) + Xcode 11.7 => Crash MacOS 10.15.6 + Xcode 11.7 => no Crash The bug is clearly in MacOS 11 beta... Thanks for helping, even when there's no solution yet, but it's clear now, that it's not my fault... :-)
Post marked as solved
8 Replies
Did another check: I created a new, clean MacOS App project in Xcode, put the example code in ContentView.swift and exchanged the ContentView() in the App by MyView(). Then choose build profile MacOS and start. After that select the last entry and hit the Delete button and Boom, it crashes...
Post marked as solved
8 Replies
To reproduce, you have to select the last item in the list and hit the delete button. In my environment, it crashed 100% sure. I'm using Xcode 12 beta6 on a Mac Book Air running the latest MacOS Big Sur Beta (build 20A5364e).