Objective-C从远程地址下载图片详解手机开发

- (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; 
}

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/3381.html

(0)
上一篇 2021年7月16日
下一篇 2021年7月16日

相关推荐

发表回复

登录后才能评论