通过响应的indexpath找到对应cell

//创建第0区第1行的indexPath
NSUInteger newIndex[] = {0, 1};
NSIndexPath *newPath = [[NSIndexPath alloc] initWithIndexes:newIndex length:2];
//找到对应的cell
UITableViewCell *nextCell = [self.tableView cellForRowAtIndexPath:newPath];

posted @ 2015-12-02 09:50  HSX  阅读(138)  评论(0编辑  收藏  举报