代码之家  ›  专栏  ›  技术社区  ›  Cesar

异步映像下载程序

  •  2
  • Cesar  · 技术社区  · 14 年前

    我已经编写了一个小类来使用NSURLConnection执行图像的下载。 其思想是将下载委托给这个类以避免阻塞执行。

    因此,我将目标UIImageView(按ref)和url传递给函数并开始下载:

    -(void)getImage:(UIImageView**)image formUrl:(NSString*)urlStr
    {
        NSLog(@"Downloader.getImage.url.debug: %@",urlStr);
        NSURL *url = [NSURL URLWithString:urlStr];
        NSURLRequest *req = [NSURLRequest requestWithURL:url cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:5.0];
        [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:YES];
        NSURLConnection *c = [[NSURLConnection alloc] initWithRequest:req delegate:self];
        [conn addObject:c];
        int i = [conn indexOfObject:c];
        [imgs insertObject:*image atIndex:i];
        [c release];
    }
    

    完成后,设置图像并更新图像视图:

    - (void)connectionDidFinishLoading:(NSURLConnection *)connection
    {
        int i = [conn indexOfObject:connection];
    
        NSData *rawData = [buffer objectAtIndex:i];
        UIImage *img = [UIImage imageWithData:rawData];
        UIImageView *imgView = [imgs objectAtIndex:i];
        imgView.image = img;
    
        [imgView setNeedsDisplay];
    
        [conn removeObjectAtIndex:i];
        [imgs removeObjectAtIndex:i];
        [buffer removeObjectAtIndex:i];
    
        if ([conn count]==0) {
            [[UIApplication sharedApplication] setNetworkActivityIndicatorVisible:NO];
        }
    }
    

    有更好的方法来实现这个功能吗?(实际上需要的是:非阻塞、缓存系统)

    5 回复  |  直到 14 年前
        1
  •  6
  •   Hiltmon    14 年前

    塞萨尔

    对于异步映像加载、缓存和线程操作,我使用 http://github.com/rs/SDWebImage . 我也写了好几次自己的代码,但是这一次写得很好,我把我所有的旧代码都扔掉了。

    从其文件中:

    #import 这个 UIImageView+WebCache.h 头,然后调用 setImageWithURL:placeholderImage: 方法来自 tableView:cellForRowAtIndexPath:

    希尔顿

        2
  •  3
  •   VSN    11 年前

    只需遵循以下步骤:

        1) Download SDWebImage below  And drag to your xcode project. 
    

    Click here to Download the SDWebImage

       2) Write the following code in your .h file #import "UIImageView+WebCache.h"
       3) Write the following code for your image view 
      [yourImageView setImageWithURL:[NSURL URLWithString:@"www.sample.com/image.png"]];
    

    那是。。。你做到了!!!

        3
  •  1
  •   GameLoading    13 年前
    NSAutoreleasePool *pool=[[NSAutoreleasePool alloc]init];
        [img_data setImage:[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:self.str_url]]]];
        [pool release];
    
        4
  •  1
  •   David    12 年前

    在UITableViewCell的单元格中,知道吗?(实际上是牢房 这个功能?(实际上需要的是:非阻塞、缓存 系统

    你试过用 在connectionIDfinishloading方法结束时调用它

        5
  •  1
  •   Praveenkumar    12 年前

    SDWebImage 很简单。我也在用那个。平滑加载图像。我使用下面的代码显示来自URL的图像

    [myImageView setImageWithURL:[NSURL URLWithString:@"www.sample.com/image.png"] placeholderImage:[UIImage imageNamed:@"lod.png"] 
    success:^(UIImage *image, BOOL cached)
    {
        productImageDetails.image = image;
    } 
    failure:^(NSError *error) {
        productImageDetails.image =[UIImage imageNamed:@"no_image.jpg"];
    }];
    

    成功 There 更多的功能。你可以参考一下。