我正在关注AppCoda:Working with Background Fetch Programming并收到一些错误。我已经创建了一个基础应用程序,可以显示包含来自其来源的数据的表格,同时它UIRefreshControl
运行良好。
然后我开始创建它的后台获取过程。我已经启用了它的后台功能,在appDelegate上设置了最小间隔时间,并实现了application:performFetchWithCompletionHandler:
方法。
- (void)application:(UIApplication *)application performFetchWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
MyTableViewController *viewController = (MyTableViewController *)self.window.rootViewController;
[viewController fetchNewDataWithCompletionHandler:^(UIBackgroundFetchResult result) {
completionHandler(result);
}];
}
我建立了这个项目,但仍然运作良好。然后,我想通过复制现有的项目方案来测试其后台进程,并启用由于后台获取事件启动选项。我按了run,由于无法识别选择器而导致错误。
[UINavigationController fetchNewDataWithCompletionHandler:]: unrecognized selector sent to instance 0x7fb99280b800
这是我的fetchNewDataWithCompletionHandler
:
- (void)fetchNewDataWithCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler {
XMLParser *xmlParser = [[XMLParser alloc] initWithXMLURLString:NewsFeed];
[xmlParser startParsingWithCompletionHandler:^(BOOL success, NSArray *dataArray, NSError *error) {
if (success) {
NSDictionary *latestDict = [dataArray objectAtIndex:0];
NSString *latestTitle = [latestDict objectForKey:@"title"];
NSDictionary *existingDict = [self.arrNewsData objectAtIndex:0];
NSString *existingTilte = [existingDict objectForKey:@"title"];
if ([latestTitle isEqualToString:existingTilte]) {
completionHandler(UIBackgroundFetchResultNoData);
NSLog(@"No new data found");
}
else {
[self performNewFetchedDataActionsWithDataArray:dataArray];
completionHandler(UIBackgroundFetchResultNewData);
NSLog(@"New data was fetched");
}
}
else {
completionHandler(UIBackgroundFetchResultFailed);
NSLog(@"Failed to fetch");
}
}];
}
我不知道这里发生了什么,我的fetchNewDataWithCompletionHandler
发生了什么?任何帮助,将不胜感激。谢谢。
答案 0 :(得分:0)
您需要将viewController设置为rootViewController
MyTableViewController *viewController = [[MyTableViewController alloc] init];
self.window.rootViewController = viewController;
然后配置tableView:cellForRowAtIndexPath:以支持出列单元标识符
static NSString *cellIdentifier = @"cellIdentifier";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellIdentifier"];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];
}
让我知道这是否有效。