viewDidAppear内に下記を記述。
for (NSString *key in myArray) { // 仮にmyArrayに1から数値が入っていた場合は、[key intValue] - 1とするだけ。 NSIndexPath *indexPath=[NSIndexPath indexPathForRow:[key intValue] inSection:0]; [myTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionBottom]; }