Updated for Xcode 14.2
SwiftUI exposes the Digital Crown to our app with two modifiers, both of which must be used in order to use the crown as input for our app. The first is focusable()
, which should be true when you want the view in question to be able to receive Digital Crown updates, and digitalCrownRotation()
, which creates a binding between the Digital Crown and a property of your choosing.
Here’s a trivial example to get you started:
struct ContentView: View {
@State var scrollAmount = 0.0
var body: some View {
Text("Scroll: \(scrollAmount)")
.focusable(true)
.digitalCrownRotation($scrollAmount)
}
}
That will scroll from negative infinity to plus infinity, showing the current scroll value in a text view.
Tip: If you put focusable()
after digitalCrownRotation()
you’ll find it no longer works.
The digitalCrownRotation()
modifier has a couple of other forms to give you more control over how it behaves. For example, the longest variety lets us:
from
and through
set a range for the scroll.by
sets a step amount, controlling how much to change each time the crown turnssensitivity
determines how much the crown needs to be moved to trigger a changeisContinuous
determines whether the value wraps around when it reaches the minimum or maximum, or whether it just stops at those bounds.isHapticFeedbackEnabled
determines whether haptic feedback is triggered on turns.For example, this modifier steps through from 1 through 5 by 0.1 increments, with a low sensitivity, wrapping around from start to finish, with haptic feedback:
.digitalCrownRotation($scrollAmount, from: 1, through: 5, by: 0.1, sensitivity: .low, isContinuous: true, isHapticFeedbackEnabled: true)
SAVE 50% To celebrate WWDC23, all our books and bundles are half price, so you can take your Swift knowledge further without spending big! Get the Swift Power Pack to build your iOS career faster, get the Swift Platform Pack to builds apps for macOS, watchOS, and beyond, or get the Swift Plus Pack to learn advanced design patterns, testing skills, and more.
Link copied to your pasteboard.