Post

Replies

Boosts

Views

Activity

Reply to Issue Running iOS 17.4 Simulator in Xcode with Flutter always say to download 17.5
This is not a Google/Flutter forum. Please visit the flutter forums over at google and file bug with them.
Replies
Boosts
Views
Activity
May ’24
Reply to VoiceOver spells word letter by letter
This comes down to using proper grammar for voice over which is interpreting the CTA “simply go“ as an instruction to the user to perform an action vs describing to the user what is on the screen hence the reason TAB is being annunciated the way it is.
Replies
Boosts
Views
Activity
May ’24
Reply to Bug in .onmove for SwiftData models
The issue might be reconciling the list after popping the view with the data changes. what is the exact error at runtime?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
May ’24
Reply to AppleID Login failing in virtualized OS
Why both? Why not something like device support files for those wishing to keep the host intact?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to unable to download xcode 16 b3 SDKs
Only tvOS was seeded. @DTS
Replies
Boosts
Views
Activity
Jul ’24
Reply to Why can't SwiftUI state be changed in the middle of view updates?
To be as simple as one can be - you don't call it - it calls you. This means anything that triggers a view update in the form of a state, binding, or publisher follows an update-and-forget model unless you're observing changes from them to pass the results off to another dependency.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Jul ’24
Reply to SwiftUI navigate to another view from a popup
Change @State var pin in PinView to a @Binding var pin @State var pin: PinAnnotation? The expression selected = 1 does nothing. Button(action: {select = 1})
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’24
Reply to trouble installing truffle for my MacM2 14.5
Truffle &/or any Ethereum tools are not an apple product. Post your questions on the Truffle support board.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Apple, you have to solve this problem
Posting the issue here will be more effective: http://feedbackassistant.apple.com/
Replies
Boosts
Views
Activity
Aug ’24
Reply to Predictive Code Completion Fails to Install (Apple Silicon M2 Max) - macOS 15 & Xcode 16
Working!
Replies
Boosts
Views
Activity
Sep ’24
Reply to Collection and Index error on Xcode 16
Try extension Collection { func get(at i: Int) -> Element? { return i < count self[i] : nil } } I know the above is not what you're looking for but I tried your extension above in playgrounds with no issues.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to Collection and Index error on Xcode 16
extension Collection { func get(at i: Index) -> Element? { return indices.contains(i) ? self[i] : nil } subscript(safeIndex index: Index) -> Element? { return get(at: index) } }
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’24
Reply to How the iOS 18 Control Widget displays an AppIntentError to the user.
Use your main app to set up and manage such permission requests via some onboarding flow.
Replies
Boosts
Views
Activity
Sep ’24
Reply to iOS 18 Bug -Certificate Trust Settings for Private Root Certificates Not Available
@Dooleylastword - Why not use certificates from a real CA for production use?
Replies
Boosts
Views
Activity
Sep ’24
Reply to Live Activities with WatchOS app
Well, perform the test and report your findings.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’24