ios - NSFetchedResultsController 与来自其他模型的数据
<p><p>我正在尝试使用来自 NSFetchedResultsController 的数据使用 UITableView 构建应用程序。问题是 - 我需要在表格 View 中显示来自其他模型的一些额外数据。</p>
<p>假设我有 2 个模型:学生和组(我认为关系很明显:组由许多学生组成,学生只能在一个组中)。我正在尝试使用组列表构建 UITableView。我还想知道每组的学生人数。</p>
<pre><code>(NSFetchedResultsController *) fetchController {
if (!_fetchController) {
NSFetchRequest *fetchRequest = [ init];
NSEntityDescription *entity = ];
;
NSPredicate *messageInChatPredicate = ;
;
NSSortDescriptor *sort = [ initWithKey:@"name" ascending:YES];
];
_fetchController = [ initWithFetchRequest:fetchRequest managedObjectContext: sectionNameKeyPath:nil cacheName:@"main"];
_fetchController.delegate = self;
}
return _fetchController;
}
</code></pre>
<p>我想知道如何添加其他信息(例如每组的学生人数)?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>为什么不直接使用 <code>group.students.count</code> 从 <code>group</code> 实体中获取值?你只需要一个 fetchedResultsController,我想你会发现 Core Data 的性能很好。</p>
<p>您的术语有点困惑,通常模型是在 Xcode 中创建的核心数据模型,并且具有许多实体,例如小组,学生。有时您可以使用两种不同的模型和/或模型的不同版本。</p>
<p>您的对象通常被称为实体,它们都属于同一个核心数据模型。 </p>
<p>编辑:
要获取子组的计数,例如女孩或男孩,您可以执行以下操作</p>
<pre><code>NSMutableArray *boys = [ init];
;
];
NSLog(@" boys count is %d", boys.count);
</code></pre>
<p>当然假设 <code>gender</code> 是 <code>Student</code> 的一个属性。</p></p>
<p style="font-size: 20px;">关于ios - NSFetchedResultsController 与来自其他模型的数据,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/21231040/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/21231040/
</a>
</p>
页:
[1]