IOS访问系统的设置和将图片保存到系统的相册
1.今天无聊就想起来了一个事情,就是想访问下系统自带的设置和将图片保存系统的相册里面去,废话不说了,直接看代码:
一.访问系统自带的设置界面的方法,一直原来都没苹果公司的禁止使用,感觉这个方法还是不怎么行呀??希望大家提出宝贵的意见!!!
[[UIApplication sharedApplication]openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];
二.将图片保存到系统的相册里面去的代码:
UIImageWriteToSavedPhotosAlbum(self.imageView.image, nil, nil, nil);
UIAlertView *alterview = [[UIAlertView alloc]initWithTitle:@"保存照片成功" message:@"照片保存在相册里面,请查看" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[alterview show];