我正在使用快速表单,找到here,来添加一个表单以供用户填写。因为我已经掌握了大部分信息,所以我正在为用户填写表单,如果他们选择并单击提交,他们就可以编辑表单。当我预先填充文本时,对于我填写的信息,结果将返回空值,在本例中是电子邮件地址。
var row: FormRowDescriptor! = FormRowDescriptor(tag: Static.emailTag, rowType: .Email, title: "Email")
row.configuration[FormRowDescriptor.Configuration.CellConfiguration] = ["textField.text" : "[email protected]", "textField.textAlignment" : NSTextAlignment.Right.rawValue]
section1.addRow(row)
最佳答案
明白了。我必须设置row.value = ""
关于swift - TextLabel为预填充文本返回null,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30965263/