我有一个 tableViewController,并且在:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
我有这个代码:
MinorGoal *minor = [self.array objectAtIndex:indexPath.row];
if (minor.finishedBoolean == [NSNumber numberWithBool:YES]){
// code to make check mark
UITableViewCell *indexPathCell = [tableView cellForRowAtIndexPath:indexPath];
indexPathCell.accessoryType = UITableViewCellAccessoryCheckmark;
NSLog(@"the %@, is finished", minor.title);
}
cell.textLabel.text = minor.title;
我想要的只是检查'minor'的'finishedBoolean'arrtibute,如果是,那么它所在的单元格必须有一个复选标记,当我运行上面的代码时,我得到了NSLog:
NSLog(@"the %@, is finished", minor.title);
这意味着 if 语句正在工作,但是为什么单元格附件没有设置为 checkMark?这是这一行:
indexPathCell.accessoryType = UITableViewCellAccessoryCheckmark;
谢谢,对不起新手