我有一个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;
我想要做的就是检查“finishedBoolean” arrtibute中的“minor”,如果它是“YES”,那么它所在的单元格必须带有一个复选标记,当我运行上面的代码时,我得到了NSLog:
NSLog(@"the %@, is finished", minor.title);
这意味着if语句正在工作,但为什么单元附件未设置为checkMark?
indexPathCell.accessoryType = UITableViewCellAccessoryCheckmark;
谢谢,对不起,新手
最佳答案
我猜CoreData ManagedObject是minor
对象,它将使finishedBoolean
成为NSNumber
。
您的检查失败,因为您正在检查两个对象是同一对象。 ==不会检查对象的相等值。
有多种方法可以执行if语句。
if ([minor.finishedBoolean boolValue])
if ([minor.finishedBoolean isEqualToNumber:@YES])
if ([minor.finishedBoolean boolValue] == YES)
在所有这些中,我会选择第一个。
希望这可以帮助。