0

XML を使用してデータをフェッチし、そのデータを UITableView に表示するすべてのコーディングを完了しました。データは GCD を使用せずに表示されますが、UIActivityIndi​​cator を追加して 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];
    }
}
4

2 に答える 2

0

まず、非同期読み込みを反映するようにデータ ソース メソッドを変更する必要があります。例えば:

- (int)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    if (xmlParser == nil)
    {
        return 0;
    }
    else
    {
        return %NUMBER_OF_ROWS%;
    }
}

次に、データの読み込みが完了したら、tableView をリロードする必要があります。

    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"];

        dispatch_async(dispatch_get_main_queue(), ^{
            [activityIndicator stopAnimating];
            [self.tableView reloadData];
        });
    });
于 2013-08-21T12:06:58.003 に答える