Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 tableview,里面有大约 100 个文本字段。我只添加了一个文本字段。它被重用并使用标签访问。
问题是这样的:假设用户更改了一些文本字段。现在,我想在保存数据期间访问该文本字段的更改。
我怎样才能做到这一点?
你非常接近你的目标。您已经为您的UITextField. 您可以在此委托方法中使用和跟踪标记。
UITextField
-(void)textFieldDidEndEditing:(UITextField *)textField { }
使用 indexpath.row 设置文本字段的第一个标签
- (void)textFieldDidEndEditing:(UITextField *)textField { // replace text in your array }