我想将一个UITextField
属性转移到另一个UITextField
。我该怎么做?
这是我的完整场景:
我创建了一个自定义单元格,其中有一个 UITextField。
现在,当我在 UITableView 中使用这个 UITextField 时,我想分配已经存在的
UITextField 的属性到此单元格的 UITextField。我试过
cell.myCustomTextField = myAlreadyCreatedTextField;
还尝试转移单个属性,例如
cell.myCustomTextField.borderStyle = myAlreadyCreatedTextField.borderStyle;
但这也没有用。
请帮忙