tableView 默认选中某一行

【tableView 默认选中某一行】NSIndexPath *indexpath=[NSIndexPath indexPathForRow:1 inSection:0];
[tableView selectRowAtIndexPath:indexpath animated:YES scrollPosition:UITableViewScrollPositionBottom];
[self tableView:tableView didSelectRowAtIndexPath:indexpath];

    推荐阅读