Objective-C从远程地址下载图片

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

- (UIImage *) getImageFromURL: (NSString *)theURL {
    UIImage *theImage = NULL;
    NSString *imageFileName = [BT_strings getFileNameFromURL:theURL];
    NSData *imageData = [[NSData alloc] initWithContentsOfURL:[NSURL URLWithString:theURL]];
    theImage =  [[UIImage alloc] initWithData:imageData];
    [BT_fileManager saveImageToFile:theImage fileName:imageFileName];
    return theImage;
}