Post

Replies

Boosts

Views

Activity

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 (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 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 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