Post

Replies

Boosts

Views

Activity

Reply to Apple Watch Missing Developer Mode Option
I was able to get Developer Mode option in Privacy&Settings following these steps (watchOS 9.3): 0.) I turned on developer mode on my iPhone 1.) I tried to run watchOS app from Xcode on my watch although it said its unavailable 2.) I turned off developer mode on my iPhone and they turned it back on 3.) Tried to run app watchOS app from Xcode again on my watch, this time I got error massage that I need to turn on developer mode 4.) I went back to Privacy&Settings on my watch I Developer Mode appeared on the bottom Hope this helps!
Feb ’23
Reply to How to enable developer mode on Apple Watch Ultra (watchOS 9.1)
I was able to get Developer Mode option in Privacy&Settings following these steps (watchOS 9.3): I turned on developer mode on my iPhone I tried to run watchOS app from Xcode on my watch although it said its unavailable I turned off developer mode on my iPhone and they turned it back on Tried to run app watchOS app from Xcode again on my watch, this time I got error massage that I need to turn on developer mode I went back to Privacy&Settings on my watch I Developer Mode appeared on the bottom Hope this helps!
Topic: App & System Services SubTopic: Core OS Tags:
Feb ’23
Reply to Apple Watch (waiting for first unlock) in Xcode
I was able to get Developer Mode option in Privacy&Settings following these steps (watchOS 9.3): I turned on developer mode on my iPhone I tried to run watchOS app from Xcode on my watch although it said its unavailable I turned off developer mode on my iPhone and they turned it back on Tried to run app watchOS app from Xcode again on my watch, this time I got error massage that I need to turn on developer mode I went back to Privacy&Settings on my watch I Developer Mode appeared on the bottom Hope this helps!
Feb ’23
Reply to Long press gesture on SwiftUI's Map View (watchOS)
For anyone struggling with the same issue, here is how I managed to make it work: .gesture(LongPressGesture(minimumDuration: 0.25) .sequenced(before: DragGesture( minimumDistance: 0, coordinateSpace: .local)) .onEnded { value in switch value { case .second(true, let drag): longPressLocation = drag?.location ?? .zero guard let coordinate = proxy.convert(longPressLocation!, from: .local) else { return } // Use retrieved coordinates default: break } }) .highPriorityGesture(DragGesture(minimumDistance: 10))
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jun ’25
Reply to Apple Watch Missing Developer Mode Option
I was able to get Developer Mode option in Privacy&Settings following these steps (watchOS 9.3): 0.) I turned on developer mode on my iPhone 1.) I tried to run watchOS app from Xcode on my watch although it said its unavailable 2.) I turned off developer mode on my iPhone and they turned it back on 3.) Tried to run app watchOS app from Xcode again on my watch, this time I got error massage that I need to turn on developer mode 4.) I went back to Privacy&Settings on my watch I Developer Mode appeared on the bottom Hope this helps!
Replies
Boosts
Views
Activity
Feb ’23
Reply to How to enable developer mode on Apple Watch Ultra (watchOS 9.1)
I was able to get Developer Mode option in Privacy&Settings following these steps (watchOS 9.3): I turned on developer mode on my iPhone I tried to run watchOS app from Xcode on my watch although it said its unavailable I turned off developer mode on my iPhone and they turned it back on Tried to run app watchOS app from Xcode again on my watch, this time I got error massage that I need to turn on developer mode I went back to Privacy&Settings on my watch I Developer Mode appeared on the bottom Hope this helps!
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Feb ’23
Reply to Apple Watch (waiting for first unlock) in Xcode
I was able to get Developer Mode option in Privacy&Settings following these steps (watchOS 9.3): I turned on developer mode on my iPhone I tried to run watchOS app from Xcode on my watch although it said its unavailable I turned off developer mode on my iPhone and they turned it back on Tried to run app watchOS app from Xcode again on my watch, this time I got error massage that I need to turn on developer mode I went back to Privacy&Settings on my watch I Developer Mode appeared on the bottom Hope this helps!
Replies
Boosts
Views
Activity
Feb ’23
Reply to Haptic feedback at start of audio recording
Hi @spinyanteater have you figured this out by any chance? Also looking for a ay how to provide haptic feedback without sound. Thanks!
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’23
Reply to UpdateApplicationContext not working simulator
Make sure the app context value is different compared to the one previously sent. If the context is the same as previously sent, didRecieveApplicationContext on watchOS won't be called. This was the reason I was facing the same issue.
Replies
Boosts
Views
Activity
Oct ’24
Reply to Long press gesture on SwiftUI's Map View (watchOS)
For anyone struggling with the same issue, here is how I managed to make it work: .gesture(LongPressGesture(minimumDuration: 0.25) .sequenced(before: DragGesture( minimumDistance: 0, coordinateSpace: .local)) .onEnded { value in switch value { case .second(true, let drag): longPressLocation = drag?.location ?? .zero guard let coordinate = proxy.convert(longPressLocation!, from: .local) else { return } // Use retrieved coordinates default: break } }) .highPriorityGesture(DragGesture(minimumDistance: 10))
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’25