首页 > 代码库 > iosiOS tableView 的一些使用

iosiOS tableView 的一些使用

以后会慢慢添加

滑动到指定的cell       

  [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:YES scrollPosition:UITableViewScrollPositionTop];   

取出屏幕可见cell 

       NSArray *cells = self.tableView.visibleCells; 

 

iosiOS tableView 的一些使用