我有自定义的UITableViewCell,它有一个按钮,当点击时会显示一个复选框。 现在我在xib中创建它并使用tableView加载它。 我的问题是我需要将单元格的选择状态设置为true。 但是当我这样做时,重复使用的细胞会失去选择属性。 有没有办法强制tableView接受单元格选择?
答案 0 :(得分:1)
试试这个:
NSIndexPath *idxPath= [NSIndexPath indexPathForRow:0 inSection:0];
[self.tableView selectRowAtIndexPath:idxPath animated:YES scrollPosition:UITableViewScrollPositionNone];