使用 NSFetchedResultsController 搜索外部数据
Posted
技术标签:
【中文标题】使用 NSFetchedResultsController 搜索外部数据【英文标题】:Using NSFetchedResultsController for searching external data 【发布时间】:2012-03-07 03:29:02 【问题描述】:我有一个使用 NSFetchedResultsController 自动填充和更新表格视图的表格。用于填充该表的数据来自外部服务器(XML 调用),仅代表服务器上实际数据的一个子集。
问题:我想在此表上方有一个搜索栏,但我想在服务器上搜索而不是搜索应用程序数据(仅一小部分),然后使用此表返回结果。
NSFetchedResults 旨在仅搜索应用程序上的 CoreData,而不是远程服务器。我将如何集成外部服务器搜索并显示这些结果?我不想为了搜索而去另一个 ViewController。
【问题讨论】:
【参考方案1】:我认为不可能为此使用 NSFetchedResultsController,因为您没有要关联的 NSFetchRequest。
但是您可以做的是在表视图委托方法中放置一些逻辑,当您搜索时,您可以填充一个 NSArray 并将其作为数据源提供给表,然后您可以重新加载自身。
// call to server
NSArray *remoteDatasource = <<populate from call>>;
AppSearchMode searchMode = AppSearchModeRemote; // this is an enum you could declare in .h
然后您可以重新加载表格,并再次调用您的所有代表。
// table view related
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
switch(searchMode)
case AppSearchModeCoreData:
return [[self fetchedResultsController] sections] count];
case AppSearchModeRemote:
return [remoteDatasource count];
我希望我说清楚了,我之前做过类似的事情。
【讨论】:
以上是关于使用 NSFetchedResultsController 搜索外部数据的主要内容,如果未能解决你的问题,请参考以下文章
在 Swift 3 中难以配置 NSFetchedResultsController