作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个通过 NSFetchedResultsController 发出的核心数据请求。此代码的预期结果是 UIActivityIndicator
将调用 startAnimating
,完成调用,然后返回表,然后指示器将“停止动画”。
实际发生的是函数在 NSFetchedResultsController 获取任何信息和/或重新填充 TableView 之前返回。stopAnimating
几乎立即被调用,然后才加载表。
我的代码如下:
[_loadingActivityIndicator startAnimating];
NSFetchRequest *fetchRequest = [[NSFetchRequest alloc] initWithEntityName:@"user"];
[fetchRequest setReturnsObjectsAsFaults:NO];
NSPredicate *predicate = [NSPredicate predicateWithFormat:@"connection.userId matches %@", [NSString stringWithFormat:@"%@",currentUser.userId ]];
fetchRequest.predicate = predicate;
fetchRequest.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"firstname" ascending:YES]];
self.fetchedResultsController = [[NSFetchedResultsController alloc] initWithFetchRequest:fetchRequest managedObjectContext:appDelegate.coreDataStack.managedObjectContext sectionNameKeyPath:nil cacheName:nil];
self.fetchedResultsController.delegate = self;
// Perform Fetch
NSError *error = nil;
[self.fetchedResultsController performFetch:&error];
if (error) {
NSLog(@"Unable to perform fetch.");
NSLog(@"%@, %@", error, error.localizedDescription);
}
[_loadingActivityIndicator stopAnimating];
我做错了什么?
最佳答案
您正在设置一个委托(delegate),它是在获取结果完成时调用的委托(delegate)。您需要将 stopAnimating 调用移至该委托(delegate)。
关于ios - UIActivityIndicator 在 NSFetchedResultsController 完成获取之前停止动画,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41470437/
我是一名优秀的程序员,十分优秀!