延迟加载 - UITableview可见单元格未显示图像

时间:2012-07-30 12:30:17

标签: iphone uitableview lazy-loading

我使用apple的延迟加载示例在uitableview中实现了延迟加载图像。一切都很好,除了一部分。最初,当我启动应用程序时,表的可见单元格不会加载任何图像。但是当我滚动表格时,图像正在加载剩余的单元格并保留。但最初的可见细胞仍然是空白的。

有人有过类似的问题吗?

有人可以指导我解决这个问题吗?

static NSString *EditCellIdentifier = @"EditCell";
UITableViewCell *cell = (UITableViewCell *) [tableView dequeueReusableCellWithIdentifier:EditCellIdentifier]; 
if (cell == nil) {
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:EditCellIdentifier];
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
 }
for (UIView *view in cell.contentView.subviews){
    [view removeFromSuperview];
}   
    if ([listItems count]>0)       
    {    
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    ListItem * item = [listItems objectAtIndex:indexPath.row];
    UIImageView *imageFrame = [[UIImageView alloc] initWithFrame:CGRectMake(5,5,60,60)];
    [imageFrame setImage:[UIImage imageNamed:@"box.png"]];
    UIImageView * imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, 50, 50)];
      otherPath=indexPath;
        if (!item.appIcon)
        {
            if (self.tableView.dragging == NO && self.tableView.decelerating == NO)
            {
                NSLog(@"Initial Values %@",item.imageURL); 
                if([item.imageURL length]==0){
                    imageView.image=[UIImage imageNamed:[categoriesImages objectAtIndex:self.configfId - 1]];
                }  
                else
                    [self startIconDownload:item forIndexPath:indexPath];
           }
       }
        else
        {
            imageView.image = item.appIcon;
        }
    [imageView setBackgroundColor:[UIColor blackColor]];       
    NSString * titleStr = [NSString stringWithFormat:@"%@. %@",item.rank,item.title];        
    NSLog(@"titleStr %@",titleStr);    
    CGSize size = [titleStr sizeWithFont:[UIFont fontWithName:@"Helvetica-Bold" size:11] constrainedToSize:CGSizeMake(12, 100) lineBreakMode:UILineBreakModeWordWrap];       
    if (size.height > 50 ) {            
        size = CGSizeMake(size.width,50.0 );            
    }        
    NSInteger height = 14;        
    if(item.title.length > 30){            
        height = 25;            
    }           
    [cell.contentView addSubview:imageView];        
    [cell.contentView addSubview:imageFrame];
}    
return cell;              
}

1 个答案:

答案 0 :(得分:0)

我无法在您的代码中帮助您但我建议您使用SDWebImage进行延迟加载。你会在https://github.com/rs/SDWebImage/找到它。并且有一个很好的教程,标题为“如何使用它”