IOS 图片下载
最近做一个IOS程序的功能,要求图片在本地的话直接显示,不在本地则去网上下载,然后存储。到网上找完资料之后根据自己的理解实现了功能,下面说说思路。
实现一个继承imageView的类,这个类主要功能就是根据传来的图片名字判断本地是否存在该图片,不存在则下载,存在就直接显示。
- (void)drawRect:(CGRect)rect {
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *picPath = [docDir stringByAppendingPathComponent:self.picName]; //获取路径
if ([[NSFileManager defaultManager] fileExistsAtPath:picPath]) {
//存在图片的时候直接读取
NSData *data = [NSData dataWithContentsOfFile:picPath];
self.thumbnail.image = [UIImage imageWithData:data];
}
else{//开线程去下载并存储
[NSThread detachNewThreadSelector:@selector(loadImage) toTarget:self withObject:nil];
}
}
- (void)loadImage {
//下载图片
NSURL *url=[NSURL URLWithString:@"http://www.baidu.com/img/baidu_sylogo1.gif"];
UIImage *img = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:url]];
self.thumbnail.image = img;
//存储图片
NSString *docDir = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
NSString *picPath=[docDir stringByAppendingPathComponent:self.picName];
//将图片写到Documents文件中
[UIImagePNGRepresentation(self.thumbnail.image) writeToFile: picPath atomically:YES];
//线程退出
[NSThread exit];
}
补充:移动开发 , IOS ,