Post

Replies

Boosts

Views

Activity

Reply to CloudKit not storing or updating public data in real time.
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.
Topic: Design SubTopic: General Tags:
Apr ’25
Reply to Is there a way to detect in SwiftUI when Accessibilities Voice Over is on?
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:
Dec ’20
Reply to How to code, in SwiftUI, for Notifications
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:
Dec ’20