XML を使用してデータをフェッチし、そのデータを UITableView に表示するすべてのコーディングを完了しました。データは GCD を使用せずに表示されますが、UIActivityIndicator を追加して gcd を使用すると、すべてのデータ到着していません。
ここに私のコードがあります:
[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];
}
}