Note: I am still using macOS Ventura.
Post
Replies
Boosts
Views
Activity
After reading again and again, I now realized it is for visionOS only.
Tested beta 5, same.
I have the same behaviour. Downloaded the 2nd time then Xcode appeared.
It is fixed in 13.4. Just tested and it works!
Unfortunately in beta 3 the issue is back. :(
Hi,
I found a partial answer to the issue of Toggle Button not shown properly in menu.
It will works IF there is no keyboard shortcut (a tick will be shown when $toolbar is on). So the solution is not to apply keyboard shortcut.
Well, I tested my code (in SwiftUI) and in current macOS beta it is indeed fixed.
You might want to try on latest beta.
I think the reason might be simple: by default Mac menu only supports text. Just pull down some menu on menu bar to see. This is more "native" to Mac.
This probably means it is not supported, just compatible (app won't crash).
After all, Mac does not support Apple Pencil.
This seems to be fixed in 13.3 beta 2 (I didn't test beta 1).
This is a bug. I reported it on another thread - using SwiftUI.
The good news is that this seem to be fixed in 13.3 beta 2.
I finally found the reason:
In build phase of Xcode, the Widget Extension is set to iOS not Always Used. Once changed, widgets appeared!
Hope this helps others facing the same issue.
I have also tried removing the watch target (our app supports widgets and watch face) and the widgets also refuse to show up.
Also tested on macOS 13.2.
You can use
#if targetEnvironment(macCatalyst)
...(Mac code)
#else
...(iOS code)
#endif
Do whatever changes you want.