我已经完成了所有编码,其中我使用 XML 获取数据,然后在 UITableView 上显示该数据,数据显示不使用 GCD,但是当我添加 UIActivityIndicator 并使用 gcd 时,ActivityIndicator 将显示直到所有数据还没到。
这是我的代码:
[super viewDidLoad];
[self.activityIndicator startAnimating];
self.activityIndicator.hidesWhenStopped = YES;
dispatch_queue_t myQueue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
dispatch_async(myQueue, ^ {
xmlParser = [[XMLParser alloc]loadXMLByURL:@"http://www.irabwah.com/mobile/core.php?cat=0"];
[self.activityIndicator performSelectorOnMainThread:@selector(stopAnimating) withObject:nil waitUntilDone:YES];
});
在这里它返回零,意味着没有数据到达,有什么问题吗?
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
if ([xmlParser listPopulated] == nil) {
NSLog(@"number of row = %i",[[xmlParser listPopulated]count]);
return 0;
} else {
NSLog(@"number of row = %i",[[xmlParser listPopulated]count]);
return [[xmlParser listPopulated]count];
}
}