Creates a stepper that uses a title key and executes the closures you provide when the user clicks or taps the stepper’s increment and decrement buttons.
Available when Label is Text.LabelがTextである時に利用可能です。
Parameters
パラメータ
titleKey
The key for the stepper’s localized title describing the purpose of the stepper.
onIncrement
The closure to execute when the user clicks or taps the control’s plus button.
onDecrement
The closure to execute when the user clicks or taps the control’s minus button.
onEditingChanged
A closure that’s called when editing begins and ends. For example, on iOS, the user may touch and hold the increment or decrement buttons on a Stepper which causes the execution of the onEditingChanged closure at the start and end of the gesture.
Discussion
議論
Use this initializer to create a stepper with a custom title that executes closures you provide when either of the stepper’s increment or decrement buttons are pressed. This version of Stepper doesn’t take a binding to a value, nor does it allow you to specify a range of acceptable values, or a step value – it simply calls the closures you provide when the control’s buttons are pressed.
The example below uses an array that holds a number of Color values, a local state variable, value, to set the control’s background color, and title label. When the user clicks or taps on the stepper’s increment or decrement buttons SwiftUI executes the relevant closure that updates value, wrapping the value to prevent overflow. SwiftUI then re-renders the view, updating the text and background color to match the current index:
structStepperView: View {@Stateprivatevar value =0let colors: [Color] = [.orange, .red, .gray, .blue, .green, .purple, .pink]funcincrementStep() { value +=1if value >= colors.count { value =0 } }funcdecrementStep() { value -=1if value <0 { value = colors.count -1 } }var body: someView {Stepper("Value: \(value) Color: \(colors[value].description)", onIncrement: incrementStep, onDecrement: decrementStep) .padding(5) .background(colors[value]) }}
Creates a stepper using a title string and that executes closures you provide when the user clicks or taps the stepper’s increment or decrement buttons.
Available when Label is Text.LabelがTextである時に利用可能です。