我有一个UItableViewCell
名为的自定义类EditableTableViewCell
(除了其他东西)有一个UITextField
内部添加到它的contentView
. 在Textfield
委托方法中,我试图检测它属于哪个部分。像这样:
-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
UIView* contentView =[textField superview];
//traverse up in the view hierarchy until we find the cell's content view.
while (![contentView isKindOfClass:[EditableTableViewCell class]] || contentView.superview == nil) {
contentView = [contentView superview];
}
EditableTableViewCell *thiscell = (EditableTableViewCell*)contentView;
NSIndexPath *indexpath =[[self tableView]indexPathForRowAtPoint:thiscell.center];
这给了我正确的结果,我在这里看到了一个类似的解决方案 ,它也可以导航视图层次结构。我想知道这是否是唯一的解决方案,或者是否有更合适的方法不涉及循环所有可用单元格。