tableView 默认选中某一行

NSIndexPath *indexpath=[NSIndexPath indexPathForRow:1 inSection:0];
[tableView selectRowAtIndexPath:indexpath animated:YES scrollPosition:UITableViewScrollPositionBottom];
[self tableView:tableView didSelectRowAtIndexPath:indexpath];

你可能感兴趣的:(iOS)