1. 程式人生 > >iOS TableView 預設選中某行

iOS TableView 預設選中某行

在開發中我們經常會遇到這樣的需求,就是在一個頁面操作進入下一個頁面時,要預設的選中該頁面某行;

通常寫在viewWillAppear裡面或者在[tableView reloaData]之後
 NSIndexPath * selIndex = [NSIndexPath indexPathForRow:1 inSection:0];
 [_tableView selectRowAtIndexPath:selIndex animated:YES scrollPosition:UITableViewScrollPositionTop];
 NSIndexPath * path = [NSIndexPath
indexPathForItem:1 inSection:0]; [self tableView:self.tableView didSelectRowAtIndexPath:path];