您好我在UIView类中有两个UITableView并且加载了相同的自定义UITableViewCell。自定义tableview单元格包含UITextField。这意味着两个UITableView包含相同自定义单元格的UITextfield。当我选择任何该文本字段时,我如何知道选择了哪个tableView的文本字段?请帮帮我..
答案 0 :(得分:1)
UITextField *txt = ----;
txt.superView.superview
将为您提供所需的UITableView
个实例
更清楚:
UITableViewCell *cell = txt.superView; // In your case custom cell
UITableView *yourTable = cell.superView;