我经常需要将表视图单元格设置为初始选择状态,我使用以下代码:
[self.tableView selectRowAtIndexPath:indexPath animated:NO scrollPosition:UITableViewScrollPositionNone]; UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:indexPath]; [cell setSelected:YES]; cell.accessoryType = UITableViewCellAccessoryCheckmark;
我同时使用selectRowAtIndexPath:indexPath和setSelected:YES,因为我不完全理解这两种方式中哪一种是以编程方式选择单元格的首选方法.
我应该使用哪一个陈述?为什么?