Decrease crown sensitivity for UIKit watch app

I am trying to decrease the sensitivity of the digital crown inside my app: on rotation, the user moves from one hole to another, and currently, they might skip some holes because of the high sensitivity of the crown. In SwiftUI, there is a method called digitalCrownRotation [https://developer.apple.com/documentation/swiftui/view/digitalcrownrotation(_:from:through:sensitivity:iscontinuous:ishapticfeedbackenabled:onchange:onidle:)].

I didn't find anything in the Apple documentation, is there something similar for UIKit?

Answered by Frameworks Engineer in 747542022

The only way to control crown rotation on watchOS is by using SwiftUI. (UIKit is not public API on watchOS, so if you're not using SwiftUI on watch, you're using WatchKit storyboards.)

Accepted Answer

The only way to control crown rotation on watchOS is by using SwiftUI. (UIKit is not public API on watchOS, so if you're not using SwiftUI on watch, you're using WatchKit storyboards.)

Decrease crown sensitivity for UIKit watch app
 
 
Q