[メモ]TableViewで最初からCellを選択状態にする方法


viewWillAppearに以下のコードを書くだけ

- (void)viewWillAppear:(BOOL)animated
{
    [super viewWillAppear:animated];
    [self.tableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:1 inSection:0] animated:NO scrollPosition:0];
}

コメントする

*