gpt4 book ai didi

swift - 如何在步进器中使用递增和递减函数同时还使用 onChange 修饰符

转载 作者:行者123 更新时间:2023-12-02 16:19:43 27 4
gpt4 key购买 nike

我已经设置好了音频播放器

除了步进器的当前功能外,我还想为 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/ 的初始化器>步骤参数。

您可以使用 onIncrementonDecrement:

public init(onIncrement: (() -> Void)?, onDecrement: (() -> Void)?, onEditingChanged: @escaping (Bool) -> Void = { _ in }, @ViewBuilder label: () -> Label)

valueboundsstep:

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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com