我是Swift的新手,但是我对这件事很执迷:
Picker("Number of people", selection: $numberOfPeople) {
ForEach(2 ..< 100) {
Text("\($0) people")
}
我尝试过用以下相同的方式进行转换:
TextField("Amount", text: $checkAmount)
.keyboardType(.decimalPad)
但是,显示错误“无法将'Binding'类型的值转换为预期的参数类型'Binding'”。