如何在tableView委托方法之外找到单元格文本字段?

时间:2015-10-07 12:55:53

标签: objective-c uitableview storyboard ui-design

我有一个带有文本字段的自定义tableView单元格。现在,我想识别tableView委托方法之外的textField。我试过了 -

UIView *cell = textField;
[cell isKindOfClass:[UITableViewCell class]];

但它不起作用。

1 个答案:

答案 0 :(得分:0)

要从表视图中获取具体单元格,您需要知道此单元格的索引路径。然后你需要做:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];  //you should set your indexes of row and section instead of zeros
MyCustomCell *cell = [myTableView cellForRowAtIndexPath:indexPath];

现在,如果文本字段是自定义单元格的属性,则可以使用cell.myTextField

获取

例如:

UITextField *textField = cell.myTextField;

现在你可以用它做你想做的事。