获取tableview可见范围内的cell

#pragma mark -从CV的cell退出来时若cell不在tableview可见的范围内则将tableview滚动到cell对应的index的位置
- (void)tablePlace:(NSNotification*)sender {
   if(![[self.tableViewindexPathsForVisibleRows]containsObject:sender.object]) {
      [self.tableViewscrollToRowAtIndexPath:sender.objectatScrollPosition:UITableViewScrollPositionTopanimated:YES];**
  }
}

你可能感兴趣的:(获取tableview可见范围内的cell)