Has this issue been fixed? I am still seeing it in iOS 14.0.1.
Post
Replies
Boosts
Views
Activity
Is it still possible to add app to bundle? I try remove from sales and wait for a day, and nothing happened?
It works now! The solution is to tap "Save" 3 times.
I have the same problem - so has this issue been solved, or have alternate solution?
I found a lot of bugs/issues have been fixed in Ventura. Try it and if it works better, make it available only for Ventura.
I am currently doing Mac Catalyst development, see whether I can help.
In the target, what's the iOS minimum requirement? Try 15.0. (Mac Catalyst is based on corresponding iOS version)
You can use
#if targetEnvironment(macCatalyst)
...(Mac code)
#else
...(iOS code)
#endif
Do whatever changes you want.
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.
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.
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.
This seems to be fixed in 13.3 beta 2 (I didn't test beta 1).
This probably means it is not supported, just compatible (app won't crash).
After all, Mac does not support Apple Pencil.
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.
Well, I tested my code (in SwiftUI) and in current macOS beta it is indeed fixed.
You might want to try on latest beta.
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.