iOS 默认某个cell为选中状态

NSInteger selectedIndex = 0;
NSIndexPath *selectedIndexPath = [NSIndexPath indexPathForRow:selectedIndex inSection:0]; 
[self.tableView selectRowAtIndexPath:selectedIndexPath animated:NO scrollPosition:UITableViewScrollPositio nNone];

放置数据读取后的合适位置即可

你可能感兴趣的:(iOS 默认某个cell为选中状态)