我在 UITableViewController 场景中创建了 5 个静态单元格。一切正常,但我无法设置选定的特定单元格!如果它是原型单元格,那么它很简单,但我如何设置静态单元格?以下代码引发 BAD 内存访问异常!我是根据关于苹果线程的讨论完成的,但不确定出了什么问题!有人可以帮忙吗。
- (void)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
[super tableView:tableView cellForRowAtIndexPath:indexPath];
if(indexPath.section == _rating)
[tableView cellForRowAtIndexPath:indexPath].accessoryType =UITableViewCellAccessoryCheckmark;
}