0

UITableViewCell 具有要在其中显示的 UIImage。

图像从服务器获取,并作为 NSData 存储在 NSDictionary 中。

此图像使用 UIImageGraphicsBeginImageContext 为非视网膜设备调整大小,如下所示。

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

            static NSString *cellID=@"Cell";
            UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:cellID];
            NSDictionary *myDictionary=[self.tableObject objectAtIndex:indexPath.row];
            NSData *imgData=[myDictionary objectForKey:@"icon"];
            UIImage *img=[UIImage imageWithData:imgData];
            if(isRetina]){
                cell.iconImageView.image=img;
            }else{
                CGRect imgRect=CGRectMake(0, 0, img.size.width/2.0, img.size.height/2.0);
                UIGraphicsBeginImageContext(imgRect.size);
                [img drawInRect:imgRect];
                UIImage *newImg=UIGraphicsGetImageFromCurrentImageContext();
                UIGraphicsEndImageContext();
                cell.iconImageView.image=newImg;
            }
}

是更好的方法和更少的内存密集型还是应该将其存储在磁盘中,然后从中访问图像并将其分配给 cell.iconImageView.image;

4

1 回答 1

0

下载时将其写入磁盘。

这样,操作系统可以懒惰地读取数据,将其缓存,并且您不会一直将图像数据保存在内存中

于 2012-12-29T18:09:52.080 回答