iOS archive保存图片到本地的方法
更新时间:2017年03月30日 14:56:41 作者:弦外雨
这篇文章主要为大家详细介绍了iOS archive保存图片到本地的方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
本文实例为大家分享了iOS保存图片到本地的具体代码,供大家参考,具体内容如下
一、工程图
二、代码
RootViewController.h
#import <UIKit/UIKit.h> @interface RootViewController : UIViewController { UIImageView *imageView; } @end
RootViewController.m
#import "RootViewController.h" @interface RootViewController () @end @implementation RootViewController - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; } - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. //初始化背景图 imageView=[[UIImageView alloc]initWithFrame:CGRectMake(100, 100, 100, 100)]; imageView.backgroundColor=[UIColor redColor]; [self.view addSubview:imageView]; //将图片保存 [self archive]; //提取保存在本地的图片 [self unarchive]; } #pragma -mark -functions //归档 -(void)archive { NSData *data=[NSKeyedArchiver archivedDataWithRootObject:[UIImage imageNamed:@"1.jpg"]]; NSUserDefaults *imageDefault = [NSUserDefaults standardUserDefaults]; [imageDefault setObject:data forKey:@"image"]; [imageDefault synchronize]; } //反归档 -(void)unarchive { NSData* data = [[NSUserDefaults standardUserDefaults]objectForKey:@"image"]; id image= [NSKeyedUnarchiver unarchiveObjectWithData:data]; imageView.image=image; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
iOS 中KVC、KVO、NSNotification、delegate 总结及区别
这篇文章主要介绍了iOS 中KVC、KVO、NSNotification、delegate 总结及区别的相关资料,需要的朋友可以参考下2016-10-10iOS应用开发中的文字选中操作控件UITextView用法讲解
这篇文章主要介绍了iOS应用开发中的文字选中操作控件UITextView用法讲解,代码基于传统的Objective-C语言,需要的朋友可以参考下2016-02-02
最新评论