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) }
Oct ’24