我的表格视图有问题。
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView deselectRowAtIndexPath:indexPath animated:YES];
UITableViewCell *tableCell = [tableView cellForRowAtIndexPath:indexPath];
BOOL isSelected = (tableCell.accessoryView = [[ UIImageView alloc ] initWithImage:[UIImage imageNamed:@"Checkmark-hvid"]]);
if (isSelected) {
tableCell.accessoryType = UITableViewCellAccessoryNone;
}
else {
tableCell.accessoryView = [[ UIImageView alloc ]
initWithImage:[UIImage imageNamed:@"Checkmark-hvid"]];
}
}
问题是我无法将 BOOL isSelected 定义为评估视图(图像)。
如果有人知道答案,请帮助我!
- Mikkel V(对不起,我的英语不好)