2

我想在UITableView完成初始化后将单元格编号 0 设置为选定的单元格?

我试着做:

[cell setSelected:YES];

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath

但细胞颜色变成黑色。

4

1 回答 1

3

UITableView 本身可以管理选择。尝试调用:

- (void)selectRowAtIndexPath:(NSIndexPath *)indexPath animated:(BOOL)animated scrollPosition:(UITableViewScrollPosition)scrollPosition
于 2012-06-25T14:53:55.867 回答