我有一个带有文本字段的自定义tableView单元格。现在,我想识别tableView委托方法之外的textField。我试过了 -
UIView *cell = textField;
[cell isKindOfClass:[UITableViewCell class]];
但它不起作用。
答案 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;
现在你可以用它做你想做的事。