初心者の質問で申し訳ありませんが、私たちは皆この時点でした:)
セルのタイトルをセットのオブジェクトに設定するために、NSSet から適切なオブジェクトを取得するために列挙を行っています。これが私のコードです。
// 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;
}
それを実行すると、次の行に「Expected Identifier」というエラーが表示されます。
if ([minorTwo == minor])
助けてくれてありがとう。