gpt4 book ai didi

ios - RSS 阅读器 : UITableView displays data very slowly

转载 作者:行者123 更新时间:2023-11-29 03:36:28 25 4
gpt4 key购买 nike

我正在从 rss feed 加载数据并在 UITableview 中显示标题。我正在使用 BlockRSSParser 来快速获取所需字段 - Here

我正在使用 NSLog 来跟踪数据的接收时间。 UITableView 收到数据后大约需要 20 秒才能显示数据。

这是我的代码:

- (void)viewDidLoad
{
[super viewDidLoad];
[self setTitle:@"Loading..."];
[MBProgressHUD showHUDAddedTo:self.view animated:YES];

NSURLRequest *req = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://blog.stackoverflow.com/feed/"]];
[RSSParser parseRSSFeedForRequest:req success:^(NSArray *feedItems) {
[self setTitle:@"Blogs"];
[self setDataSource:feedItems];
[self.tableView reloadData];
RSSItem *item = [dataSource objectAtIndex:2];
NSLog(@"loaded cell %@", [item title]);

} failure:^(NSError *error) {
[MBProgressHUD hideHUDForView:self.view animated:YES];
}];
}

请注意此代码中的注释。它执行得很快,并向我显示了博客文章的标题之一。

但是在接下来的 20 秒内,在以下方法最终启动之前没有任何显示:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
[MBProgressHUD hideHUDForView:self.view animated:YES];

RSSItem *item = [dataSource objectAtIndex:indexPath.row];
NSLog(@"loaded cell %@", [item title]);

UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:item.title];
if (cell == nil) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:item.title];
}

// Configure the cell...
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
NSString *theTitle = [item title];
cell.textLabel.text = theTitle;

return cell;
}

此代码中的注释将在 20 秒后执行。这么大的延迟背后的原因是什么?我尝试过使用来自不同站点的不同提要网址。仍然是相同的输出。

最佳答案

您需要在主队列上执行所有与 UI 相关的任务。下面的示例代码可能需要一些调整才能将变量放入 block 中。

- (void)viewDidLoad
{
[super viewDidLoad];
[self setTitle:@"Loading..."];
[MBProgressHUD showHUDAddedTo:self.view animated:YES];

NSURLRequest *req = [[NSURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://blog.stackoverflow.com/feed/"]];
[RSSParser parseRSSFeedForRequest:req success:^(NSArray *feedItems) {

dispatch_async(dispatch_get_main_queue(), ^{
[self setTitle:@"Blogs"];
[self setDataSource:feedItems];
[self.tableView reloadData];
});

RSSItem *item = [dataSource objectAtIndex:2];
NSLog(@"loaded cell %@", [item title]);

} failure:^(NSError *error) {
[MBProgressHUD hideHUDForView:self.view animated:YES];
}];
}

关于ios - RSS 阅读器 : UITableView displays data very slowly,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19113903/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com