抱歉新手问题,但我们都在这一点上:)
我正在进行枚举以从 NSSet 中获取正确的对象,以将 Cell 的标题设置为 Set 中的对象,这是我的代码:
// the object we want from the set
MinorGoal *minor = [self.fetchedResultsController objectAtIndexPath:indexPath];
// enumeration
for (NSManagedObject *minorTwo in minorGoalsSet) {
if ([minorTwo == minor]) // I get error here: "Expected Identifier"
cell.textLabel.text = minor.title;
}
好吧,当我运行它时,我收到错误:此行上的“预期标识符”:
if ([minorTwo == minor])
感谢您的帮助。