加载更多单元格“willDisplayCell”问题

发布于 2024-12-04 10:52:00 字数 1637 浏览 1 评论 0原文

我的 willDisplayCell 有问题,它不会停止从 url 获取 Xml 我的代码:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [itemsToDisplay count] + 1;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}


if (indexPath.row == [itemsToDisplay count]) {
    cell.textLabel.text = @"Load More...";


} else {
    MWFeedItem *item = [itemsToDisplay objectAtIndex:indexPath.row];
    cell.textLabel.text = item.title;
}

    return cell;
}




- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
 {
      if (indexPath.row == [itemsToDisplay count]) {

    // Parse
    NSURL *feedURL = [NSURL URLWithString:@"http://gdata.youtube.com/feeds/api/users/RayWilliamJohnson/uploads?v=2&alt=rss&sort_field=added&start-index=21&max-results=20"];
    feedParser = [[MWFeedParser alloc] initWithFeedURL:feedURL];
    feedParser.delegate = self;
    feedParser.feedParseType = ParseTypeFull; // Parse feed info and all items
    feedParser.connectionType = ConnectionTypeAsynchronously;
    [feedParser parse];



    [self.tableView reloadData];
}    
}

看起来他处于一种不会停止获取 xml 的循环中,

所以我该如何修复它,以便我只调用一次?

tnx

i have a problem with willDisplayCell it doesn't stop fetch Xml from the url
my code:

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
return [itemsToDisplay count] + 1;
}


- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

if (cell == nil) {
    cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}


if (indexPath.row == [itemsToDisplay count]) {
    cell.textLabel.text = @"Load More...";


} else {
    MWFeedItem *item = [itemsToDisplay objectAtIndex:indexPath.row];
    cell.textLabel.text = item.title;
}

    return cell;
}




- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath
 {
      if (indexPath.row == [itemsToDisplay count]) {

    // Parse
    NSURL *feedURL = [NSURL URLWithString:@"http://gdata.youtube.com/feeds/api/users/RayWilliamJohnson/uploads?v=2&alt=rss&sort_field=added&start-index=21&max-results=20"];
    feedParser = [[MWFeedParser alloc] initWithFeedURL:feedURL];
    feedParser.delegate = self;
    feedParser.feedParseType = ParseTypeFull; // Parse feed info and all items
    feedParser.connectionType = ConnectionTypeAsynchronously;
    [feedParser parse];



    [self.tableView reloadData];
}    
}

its look like he is in kind of loop that doesnt stop fetch xml

so how can i fix it so i will only called once?

tnx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不念旧人 2024-12-11 10:52:00

问题是您在 tableView:willDisplayCell: 中调用了 reloadDatareloadData 将导致每个 UITableViewCell 再次绘制,这意味着 willDisplayCell 将为屏幕上可见的每个单元格调用。在我看来,你那里有一个无限循环。

tableView:willDisplayCell: 绝对是进行 XML 解析的错误位置。 willDisplayCell 应该只用于准备 UI。我不能肯定地说,但也许 XML 解析的更好位置是在视图控制器的 init 方法中。

The problem is that you have called reloadData within tableView:willDisplayCell:. reloadData will cause every UITableViewCell to get drawn again, means willDisplayCell will get called for every cell that will be visible on screen. Seems to me like you have an infinite loop there.

tableView:willDisplayCell: is definitely the wrong place to be doing that XML parsing. willDisplayCell should just be used to prepare the UI. I can't say for certain, but perhaps a better place to the XML parsing would be in your view controller's init method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文