- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我想按照 iOS 消息的工作方式设置一个 NSFetchedResultsController,也就是说,我想先让最新的项目填满屏幕,然后当用户在 tableview 中往回滚动时获取。
我认为我对仅使用 FetchedResultsController 有点偏见,它的代表就像“正常”一样,我不太确定如何去做。
我也不确定这是否是用于我想要得到的东西的正确工具 :)
我只想获取最新的记录,将它们显示在 TableView 中,并在用户向上滚动时继续获取项目并将它们插入现有行之上。
这只是我到目前为止的常规设置:
import UIKit
import CoreData
class ViewController: UIViewController {
var coreDataStack: CoreDataStack!
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var addButton: UIBarButtonItem!
var fetchedResultsController: NSFetchedResultsController!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let fetchRequest = NSFetchRequest(entityName: "Item")
let timestampSort = NSSortDescriptor(key: "timestamp", ascending: true)
fetchRequest.sortDescriptors = [timestampSort]
fetchedResultsController =
NSFetchedResultsController(fetchRequest: fetchRequest, managedObjectContext: coreDataStack.context, sectionNameKeyPath: nil, cacheName: nil)
self.fetchedResultsController.delegate = self
do {
try self.fetchedResultsController.performFetch()
} catch let error as NSError {
print("initial fetch error is: \(error.localizedDescription)")
}
}
}
extension ViewController: UITableViewDataSource {
func numberOfSectionsInTableView
(tableView: UITableView) -> Int {
return self.fetchedResultsController.sections!.count
}
func tableView(tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
let sectionInfo = fetchedResultsController.sections![section]
return sectionInfo.name
}
func tableView(tableView: UITableView,
numberOfRowsInSection section: Int) -> Int {
let sectionInfo = self.fetchedResultsController.sections![section]
return sectionInfo.numberOfObjects
}
func tableView(tableView: UITableView,
cellForRowAtIndexPath indexPath: NSIndexPath)
-> UITableViewCell {
let cell =
tableView.dequeueReusableCellWithIdentifier(
"ItemCell", forIndexPath: indexPath)
as! ItemCell
let item = self.fetchedResultsController.objectAtIndexPath(indexPath) as! Item
cell.textLabel.text = item.name
return cell
}
}
extension ViewController: NSFetchedResultsControllerDelegate {
func controllerWillChangeContent(controller: NSFetchedResultsController) {
self.tableView.beginUpdates()
}
func controller(controller: NSFetchedResultsController, didChangeObject anObject: AnyObject, atIndexPath indexPath: NSIndexPath?, forChangeType type: NSFetchedResultsChangeType, newIndexPath: NSIndexPath?) {
switch type {
case .Insert:
self.tableView.insertRowsAtIndexPaths([newIndexPath!], withRowAnimation: .Automatic)
case .Delete:
self.tableView.deleteRowsAtIndexPaths([indexPath!], withRowAnimation: .Automatic)
case .Update:
return
case .Move:
self.tableView.deleteRowsAtIndexPaths([indexPath!], withRowAnimation: .Automatic)
self.tableView.insertRowsAtIndexPaths([newIndexPath!], withRowAnimation: .Automatic)
}
}
func controllerDidChangeContent(controller: NSFetchedResultsController) {
self.tableView.endUpdates()
}
}
最佳答案
NSFetchedResultsController
只是按排序顺序存储一组对象,您可以通过 fetchedObjects
方法访问它。因此,要显示最后 X 条消息,您需要显示该数组的最后 X 个元素。
与其尝试在每个 numberOfRowsInSection()
和 cellForRowAtIndexPath()
中计算,我发现缓存 X 元素的副本更容易当前每次 NSFetchedResultsController
更改时显示(在 controllerDidChangeContent()
中)。也就是说,在每次调用 controllerDidChangeContent
时,您都会从已获取结果 Controller 的 fetchedObjects
(Objective-C 中的示例代码,因为那是我在必须执行此操作的项目中使用的代码)
@property (strong, nonatomic) NSArray *msgsToDisplay;
@property unsigned long numToDisplay;
@property unsigned long numberActuallyDisplaying;
- (void)viewDidLoad {
// ...
self.msgsToDisplay = [[NSArray alloc] init];
self.numToDisplay = 20; // or whatever count you want to display initially
// ...
}
- (void)controllerDidChangeContent:(NSFetchedResultsController *)controller
{
NSArray *allMsgs = [[_fetchedResultsController fetchedObjects] copy];
self.numberActuallyDisplaying = MIN(self.numToDisplay, [allMsgs count]);
self.msgsToDisplay = [allMsgs subarrayWithRange:NSMakeRange([allMsgs count] - self.numberActuallyDisplaying, self.numberActuallyDisplaying)];
}
那么您的行数(假设表格中只有一个部分)就是您实际显示的消息数:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return self.numberActuallyDisplaying;
}
cellForRowAtIndexPath
可以索引到对象的缓存副本中:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
Message *msg = [self.msgsToDisplay objectAtIndex:indexPath.row];
//...
}
当用户向上滚动时,您可以使用 UIRefreshControl
( https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIRefreshControl_class/ ) 允许用户请求更多数据。看起来您没有使用 UITableViewController
,因此您需要显式创建一个 UIRefreshControl
并将其添加到表中。在 viewDidLoad()
中:
UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init];
[refreshControl addTarget:self action:@selector(handleRefresh:) forControlEvents:UIControlEventValueChanged];
[self.tableView insertSubview:refreshControl atIndex:0];
当用户下拉刷新时,你可以将你的self.numToDisplay
设置为一个更大的数字,然后更新你的self.msgsToDisplay
和self。 numActuallyDisplaying
基于要显示的新数字。
- (void) handleRefresh:(UIRefreshControl *)controller
{
self.numToDisplay += NUMBER_TO_DISPLAY_INCREMENT;
__block NSArray *allMsgs;
[[_fetchedResultsController managedObjectContext] performBlockAndWait:^{
allMsgs = [[_fetchedResultsController fetchedObjects] copy];
}];
self.numberActuallyDisplaying = MIN(self.numToDisplay, [allMsgs count]);
self.msgsToDisplay = [allMsgs subarrayWithRange:NSMakeRange([allMsgs count] - self.numberActuallyDisplaying, self.numberActuallyDisplaying)];
[controller endRefreshing];
}
将这一切转换为 Swift 应该很简单,但如果您需要这方面的帮助,请告诉我。
关于ios - NSFetchedResultsController 类似于 iOS 消息(最近的项目优先),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35675736/
是否有一种 STL 算法允许我将一个函数应用于一个范围内的每个元素,转换元素,并将之前转换的元素作为输入? 我在想这样的事情(显然行不通,因为第二个迭代器将无效): struct Input {
我有一个字典列表,例如: l =[{country:'Italy',sales:100,cost:50}{country:'Italy',sales:130,cost:60} {co
考虑以下几点: $var = 'Now is the time' if ($var -like 'Now*') { 'true' } else { 'false' } 输出:真 现在交换 -like
我认为这是一个简单的问题,但尚未得到解决方案。我只想从此处解释的列中获取有效数字。 假设我们有一个包含以下值的 varchar 列 ABC Italy Apple 234.62 2:234:43:22
这个问题已经有答案了: MySQL LIKE IN()? (12 个回答) 已关闭 4 年前。 是否可以使用 IN 子句扩展 LIKE 表达式? 此时我得到以下 SQL: select * from
这个问题在这里已经有了答案: How to postpone/defer the evaluation of f-strings? (14 个答案) 关闭 3 年前。 考虑字符串 string_0
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 8 年前。 Improve t
我刚刚阅读了以下关于同一主题的帖子: Facebook like notifications tracking (DB Design)和 Database design to store notifi
我如何在 javascript 中创建一个新事件/像在 c# 中一样? private event EventHandler asdCompleted; private void SetEventHa
我经常访问一个名为 GOOD 的网站我特别喜欢一种审美风格;导航栏如何在网站背景中扩展其颜色。如果您访问该网站,就会明白我的意思。 在 CSS 中,我怎样才能以最简单的方式复制它?我已经用 z-ind
我对 LINQ 比较陌生,不知道如何执行 Like 条件。我有一个 myObject 的 IEnumerable 列表,想要做一些类似 myObject.Description 的事情,比如“Help
我正在尝试在 Sharepoint 2013 提供商托管的应用程序中构建一个类似人员选择器的工具。最初,我使用的是 Utility.ResolvePrincipal,它让我可以访问 Sharepoin
过去几个月我一直在研究微服务架构应用程序,我仍在努力适应分布式特性。我多次注意到一种模式,但我不确定处理它的首选方式是什么。 假设我们有服务 A、服务 B 和服务 C。服务 A 公开了一个 API,其
这个问题在这里已经有了答案: Equivalent to unix "less" command within R console (5 个回答) 6年前关闭。 R 控制台中是否有任何命令与 Linu
是否可以在 Xcode 中为类似于 emacs 中的“标记”功能的行添加书签?还有我可以用来跳转到行号的快捷方式吗?我的源代码变得很长且难以导航。 最佳答案 是的;如果您将文本插入符号放在要添加书签的
在使用 vi 15 年的大部分时间后,我在使用 Go 时一时兴起尝试了 Rob Pike 的 Acme。我真的很喜欢它的小巧轻便。现代 unix 风格的东西在 Acme 中表现不佳,而 Ruby 开发
我正在寻找可以打印矩阵[1:5, 1:5] 的任何包中的函数。 head() 适用于列数较少但矩阵较大的用户。我知道我可以为它创建自己的函数,但我想知道是否已经有函数了。 最佳答案 在名为futile
我正在用 C++ 构建一个聚类算法,但我不能很好地处理 OOP 和发生变化的变量(成员数据)的状态。对于某种复杂的算法,我发现这是我发展的障碍。 因此,我正在考虑将编程语言更改为一种功能语言:Ocam
我有一个这样的日志: Jun 21 06:25:07 172.25.1.1 kernel: DROP IN=ppp0 OUT= MAC= SRC=206.221.177.2 DST=185.79.95
我需要一些帮助来制作类似于 Accordion 的东西。目标是,如果您单击导航中的链接,一个部分会消失,而您单击的部分会出现(在相同位置且不明显)。 如果可能,它还应该自动滚动到该部分的开头(导航的结
我是一名优秀的程序员,十分优秀!