UITableView显示启动时的最后一项。如何查看启动时的第一项?
答案 0 :(得分:1)
您可以调用以下方法将表格视图定位到您想要的任何单元格:
- (void)scrollToRowAtIndexPath:(NSIndexPath *)indexPath atScrollPosition:(UITableViewScrollPosition)scrollPosition animated:(BOOL)animated;
例如,
[tableView scrollToRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] atScrollPosition:UITableViewScrollPositionTop animated:YES];