Post

Replies

Boosts

Views

Activity

Reply to watchOS app crashing on Series 10 - cannot reproduce on Series 8 running same watchOS version
Hey, I got the same issue. This issue only affects users with the Apple Watch Series 10. The crash happens whenever ProgressView() appears in the UI. It occurs specifically at _UIGraphicsBeginImageContextWithOptions. To fix this issue, upgrade your build mac to Xcode 16 if possible. If you can't, you can use the following workaround. if #available(watchOS 11.0, *) { EmptyView() } else { ProgressView() .tint(Color.accentColor) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Oct ’24
Reply to iOS 26 - Widget not updated with respect to main app's system preferred language
Hi ! I'm having the same issue on iOS 26.0. Just wanted to let you know that this has been fixed in iOS 26.1. Did anyone submit a feedback report for this?
Replies
Boosts
Views
Activity
Nov ’25
Reply to watchOS app crashing on Series 10 - cannot reproduce on Series 8 running same watchOS version
Hey, I got the same issue. This issue only affects users with the Apple Watch Series 10. The crash happens whenever ProgressView() appears in the UI. It occurs specifically at _UIGraphicsBeginImageContextWithOptions. To fix this issue, upgrade your build mac to Xcode 16 if possible. If you can't, you can use the following workaround. if #available(watchOS 11.0, *) { EmptyView() } else { ProgressView() .tint(Color.accentColor) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to SwiftUICore import on Xcode 16.0
I'm confused, too!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to Button.keyboardShortcut(.defaultAction) doesn't properly work on macOS Monterey
Still happens on Monterey 12.5.1, Xcode 13.4.1, iOS target 15.5 The TextField absorbs first return input and loses its focus state, second return input activates keyboardShortcut modifier. This issue does not occur in iOS target 14.5. 🤷🏻
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’22