作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经设置好了音频播放器
除了步进器的当前功能外,我还想为 onIncrement 和 onDecrement 播放单独的声音。
这个项目使用核心数据来持久化。 $estimatorData.qty 在数量变化时监听发布的 var 我的 View 模型,新数量保存在我的 View 模型中 estimatorData.save()
这是文档的链接 Stepper
如果其中一个初始化程序适合我要完成的任务,我正在努力思考
Stepper("", value: $estimatorData.qty.onChange { qty in
estimatorData.save()
}, in: 0...10000)
.frame(width: 100, height: 35)
.offset(x: -4)
.background(colorScheme == .dark ? Color.blue : Color.blue)
.cornerRadius(8)
这是我的球员
func incrementTaped() {
playSound(sound: "plus", type: "mp3")
}
func decrementTaped() {
playSound(sound: "minus", type: "m4a")
}
最佳答案
目前没有结合onIncrement
/onDecrement
函数和value
/bounds
/ 的初始化器>步骤
参数。
您可以使用 onIncrement
和 onDecrement
:
public init(onIncrement: (() -> Void)?, onDecrement: (() -> Void)?, onEditingChanged: @escaping (Bool) -> Void = { _ in }, @ViewBuilder label: () -> Label)
或value
、bounds
和step
:
public init<V>(value: Binding<V>, in bounds: ClosedRange<V>, step: V.Stride = 1, onEditingChanged: @escaping (Bool) -> Void = { _ in }, @ViewBuilder label: () -> Label) where V : Strideable
相反,您可以创建自定义 Stepper
以组合两个初始化器:
struct CustomStepper<Label, Value>: View where Label: View, Value: Strideable {
@Binding private var value: Value
private let bounds: ClosedRange<Value>
private let step: Value.Stride
private let onIncrement: (() -> Void)?
private let onDecrement: (() -> Void)?
private let label: () -> Label
@State private var previousValue: Value
public init(
value: Binding<Value>,
in bounds: ClosedRange<Value>,
step: Value.Stride = 1,
onIncrement: (() -> Void)? = nil,
onDecrement: (() -> Void)? = nil,
@ViewBuilder label: @escaping () -> Label
) {
self._value = value
self.bounds = bounds
self.step = step
self.onIncrement = onIncrement
self.onDecrement = onDecrement
self.label = label
self._previousValue = .init(initialValue: value.wrappedValue)
}
var body: some View {
Stepper(
value: $value,
in: bounds,
step: step,
onEditingChanged: onEditingChanged,
label: label
)
}
func onEditingChanged(isEditing: Bool) {
guard !isEditing else {
previousValue = value
return
}
if previousValue < value {
onIncrement?()
} else if previousValue > value {
onDecrement?()
}
}
}
演示
struct ContentView: View {
@State private var value = 1
var body: some View {
CustomStepper(value: $value, in: 1...10, onIncrement: onIncrement, onDecrement: onDecrement) {
Text(String(value))
}
.onChange(of: value) {
print("onChange value: \($0)")
}
}
func onIncrement() {
print("onIncrement")
}
func onDecrement() {
print("onDecrement")
}
}
关于swift - 如何在步进器中使用递增和递减函数同时还使用 onChange 修饰符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65781501/
我是一名优秀的程序员,十分优秀!