interferon, thanks for responding. Doing another google search for answers I learned that SwiftData and CloudKit only do private databases. So, I need to wait for the next best SwiftData update in order to have a public database. I can wait.
So SwiftData and Cloudkit are not using public databases at this time.
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
UPDATE 2. I double checked and the Mac mini is not updating to the cloud. I deleted my App and re-downloaded it with an old database. So does Macs have separate clouds?
I'll continue investigating....
Same, Swift Playground crashes for no reason. I am coding Android Studio apps now.
Topic:
Developer Tools & Services
SubTopic:
Swift Playground
Tags:
Found it!. But the explanation is not so tricky. Simply put the answer is Yes in SwiftUI to directly detect if voice over is on use:
if UIAccessibility.isVoiceOverRunning {}
I tried this to find it and read another post from @OOPer, Thanks
1) if isVoiceOverRunning {}. not in scope error
2) if Accessibility.isVoiceOverRunning {}. Accessibility has no member "isVoiceOverRunning"
3) if UIAccessibility.isVoiceOverRunning().
Sweet success. I re-discovered it. Yeepee. 😀
I was missing the UI of UIAccessibility. and Quick help was not helping me and @OOPer did.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags:
Whoa! that is simply amazing to me!!. I am searching but would have much difficulty finding your response. Big thanks. I will study it. Your response needs to be in the Quick Help guide built in to Xcode. But Quick Help offers some little help instead.
I also found in Swift UIkit the variable
static var isVoiceOverRunning: Bool {get}
but first try at coding it failed so more study is in order.
Topic:
UI Frameworks
SubTopic:
SwiftUI
Tags: