はいあなたは...
は(この例では、我々は我々の管理対象オブジェクトの唯一の明確な「タイトル」属性を取得する)方法
- (NSFetchedResultsController *)fetchedResultsController;
の外を見ると、そこに以下の行を追加することができます:
[fetchRequest setReturnsDistinctResults:YES];
[fetchRequest setResultType:NSDictionaryResultType];
[fetchRequest setPropertiesToFetch:[NSArray arrayWithObject:@"title"]];
self.fetchedResultsController.delegate = nil;
あなたはNSFetchedResultsControllerからの値にアクセスする方法を
にたとえば...世話をする必要があり
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath;
がデータにアクセスするには、次のコードを使用します。Shingooが提供するソリューションに加えて
NSDictionary* title = [self.fetchedResultsController objectAtIndexPath:indexPath];
cell.textLabel.text = [title objectForKey:@"title"];
ferdil - あなたの答えを詳述できますか? – NSPratik