如何区分具有相同自定义单元格的两个UITableView

时间:2016-07-15 08:16:38

标签: ios objective-c iphone

您好我在UIView类中有两个UITableView并且加载了相同的自定义UITableViewCell。自定义tableview单元格包含UITextField。这意味着两个UITableView包含相同自定义单元格的UITextfield。当我选择任何该文本字段时,我如何知道选择了哪个tableView的文本字段?请帮帮我..

1 个答案:

答案 0 :(得分:1)

UITextField *txt = ----;

txt.superView.superview将为您提供所需的UITableView个实例 更清楚:

UITableViewCell *cell = txt.superView;   // In your case custom cell
UITableView *yourTable = cell.superView;