定义一个按钮
点击按钮,将self.imageView上面的image内容保存到本地相册,并指定判断保存成功与否的方法imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:
~~~
-(IBAction)saveImageToAlbum:(id)sender {
UIImageWriteToSavedPhotosAlbum(self.imageView.image, self, @selector(imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:), nil);
}
~~~
实现imageSavedToPhotosAlbum:didFinishSavingWithError:contextInfo:方法
~~~
- (void)imageSavedToPhotosAlbum:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo
{
NSString *message = @"呵呵";
if (!error) {
message = @"成功保存到相册";
}else
{
message = [error description];
}
NSLog(@"message is %@",message);
}
~~~
这些代码很简单,如果没有错误的话就提示“成功保存到相册”,如果保存失败的话,那么就输出错误信息[error description]。
- 前言
- iOS开发中@2x等后缀的图片干嘛用的
- 上传APP至AppStore时打包出现U option must have a non-empty value
- UIbutton文字相关
- 将UIview的image保存到本地的方法
- 百度推送iOS
- 静态库的封装
- 提高IOS开发效率的工具
- iOS开发笔记6:图片轮播及其无限循环效果,ios笔记
- ABPeoplePickerNavigationController系统通讯录使用
- iOS中添加UITapGestureRecognizer手势识别后,UITableView的didSelectRowAtIndexPath失效
- ios搭一个简易计算器(利用masonry布局)