让TableView滚动到想要的行

#indexPathForRow 到第几行  #inSection 到第几个section
NSIndexPath *lastIndex = [NSIndexPath
               indexPathForRow:1 
               inSection:0];
[self.tableView 
  scrollToRowAtIndexPath:lastIndex 
  atScrollPosition:UITableViewScrollPositionBottom 
  animated:YES];

你可能感兴趣的:(让TableView滚动到想要的行)