3

我有一个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];

这给了我正确的结果,我在这里看到了一个类似的解决方案 ,它也可以导航视图层次结构。我想知道这是否是唯一的解决方案,或者是否有更合适的方法不涉及循环所有可用单元格。

4

2 回答 2

5

试试这个,不需要遍历视图

-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
    UIView* contentView =[textField superview];
    CGPoint center = [self.tableView convertPoint:textField.center fromView:contentView];
    NSIndexPath *indexpath =[[self tableView] indexPathForRowAtPoint:center];
    NSLog(@"indexPath:%@", indexpath);
}
于 2013-09-26T08:46:36.620 回答
0

为什么不

NSIndexPath *indexpath = [(UITableView*)self.superview indexPathForCell:self]

?

于 2013-09-26T08:50:08.700 回答