テーブルビューを上下にスクロールすると、テーブルビューセルが選択されていません。コードで次のメソッドを使用するにはどうすればよいですか?
[tableview selectRowAtIndexPath:animated:scrollPosition];
テーブルビューを上下にスクロールすると、テーブルビューセルが選択されていません。コードで次のメソッドを使用するにはどうすればよいですか?
[tableview selectRowAtIndexPath:animated:scrollPosition];
コードで次のメソッドを使用するにはどうすればよいですか?
[tableview selectRowAtIndexPath:animated:scrollPosition];
例:テーブルビューに新しいセルを追加し、追加されたセルまでテーブルをスクロールします。
NSArray *indexPaths = [NSArray arrayWithObjects: [NSIndexPath indexPathForRow:[self.yourDataSource count]-1 inSection:0],nil];
[self.myTableView beginUpdates];
[self.myTableView insertRowsAtIndexPaths:indexPaths withRowAnimation:UITableViewRowAnimationTop];
[self.myTableView endUpdates];
[self.myTableView scrollToRowAtIndexPath:indexPaths atScrollPosition:UITableViewScrollPositionTop animated:YES];