通过响应的indexpath找到对应cell

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

原文地址:https://www.cnblogs.com/hsxblog/p/5012035.html