如何将选择器转换为TextField?

时间:2020-05-29 06:36:35

标签: ios swift iphone

我是Swift的新手,但是我对这件事很执迷:

Picker("Number of people", selection: $numberOfPeople) {
            ForEach(2 ..< 100) {
                Text("\($0) people")
                }

我尝试过用以下相同的方式进行转换:

 TextField("Amount", text: $checkAmount)
                .keyboardType(.decimalPad)

但是,显示错误“无法将'Binding'类型的值转换为预期的参数类型'Binding'”。

0 个答案:

没有答案