在函数中获取cell.textField值

时间:2014-09-19 17:05:49

标签: ios objective-c iphone swift

我创建了一个带有customCells的UITableView,其中一个带有textField,另一个带有textView。当用户按下标题为" Done"的UIBarButtonItem时我想保存textField值,但是如何在cellForRowAtIndexPath之外访问这些值?

1 个答案:

答案 0 :(得分:0)

你可以试试这个:

for (int i = 0; i < [self.tableView numberOfRowsInSection:0]; i++) {
    UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForItem:i inSection:0]];
    // do something with cell
}