0

我已经完成了所有编码,其中我使用 XML 获取数据,然后在 UITableView 上显示该数据,数据显示不使用 GCD,但是当我添加 UIActivityIndi​​cator 并使用 gcd 时,ActivityIndi​​cator 将显示直到所有数据还没到。

这是我的代码:

[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

试试这个:

  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 performSelector:@selector(stopAnimating)];
    });
    });
于 2013-08-21T12:01:50.930 回答
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 回答