定製化的Cell, 如何得到NSIndexPath

1. 若是button是添加到cell.contentView上面的話, spa

UITableViewCell *cell = button.superview.superview; code

NSIndexPath *index = [myTableView indexPathForCell:cell]; it

或者 io

- (IBAction)clickedButton:(id)sender {
 UIButton *button = (UIButton *)sender; 
UITableViewCell *cell = (UITableViewCell *)button.superview; 
 
UITableViewCell *cell = (UITableViewCell *)button.superview.superview; 

UITableView *tableView = (UITableView *)cell.superview;
 NSIndexPath *indexPath = [tableView indexPathForCell:cell]; 
}

Or shorter: table

- (IBAction)clickedButton:(id)sender { NSIndexPath *indexPath = [(UITableView *)sender.superview.superview indexPathForCell:(UITableViewCell *)sender.superview]; }


2. Cell的Tag class

 
UITableViewCell *cell = (UITableViewCell *)[tableView dequeueReusableCellWithIdentifier:CellIdentifier]; if (cell == nil) { cell = [[[TextFieldCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; } [cell setTag:indexPath.row];
-(void)setTag:(int)tag { textRow.tag = tag; }
相關文章
相關標籤/搜索