延迟加载后将图像保存在数据库中

时间:2014-05-14 08:25:12

标签: ios objective-c lazy-loading

在我的应用中,我使用延迟加载方法在UITableviewCellUIScrollView子视图中加载图片。问题是,当app关闭并重新启动时,它会再次开始加载。加载后是否可以保存这些图像。如果是这样,我该怎么办呢。

我正在使用AsyncImageView

我的代码是......

   cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    AsyncImageView *imageView = [[AsyncImageView alloc]initWithFrame:CGRectMake(0, 0, 88, 88)];
    imageView.contentMode = UIViewContentModeScaleAspectFill;
    imageView.clipsToBounds = YES;
    imageView.tag = 99;
    [cell addSubview:imageView];
    cell.indentationWidth = 88.0;
    cell.indentationLevel = 1.0;
    AsyncImageView *imageView = (AsyncImageView *)[cell viewWithTag:99];
    [[AsyncImageLoader sharedLoader] cancelLoadingImagesForTarget:imageView];
    NSURL *imagUrl = [NSURL URLWithString:[imagesArray objectAtIndex:counter]];
    imageView.imageURL = imagUrl;

0 个答案:

没有答案