博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone 存图片和视频到iPhone相册
阅读量:6702 次
发布时间:2019-06-25

本文共 819 字,大约阅读时间需要 2 分钟。

1:原文摘自:

 当保存完成后,调用的回调方法: 

Obj-c代码  
  1. - (void)image:(UIImage *)image didFinishSavingWithError:(NSError *)error contextInfo:(void *)contextInfo  
  2. {  
  3.     // Was there an error?  
  4.     if (error != NULL)  
  5.     {  
  6.         // Show error message…  
  7.          NSLog(@"Save image failed");  
  8.           
  9.     }  
  10.     else  // No errors  
  11.     {  
  12.         // Show message image successfully saved  
  13.         NSLog(@"Save image successful");  
  14.     }  
  15. }  
存视频到相册: 
Obj-c代码  
  1. NSString *path=[[NSBundle mainBundle] pathForResource:@"movie" ofType:@"mp4"];  
  2.   
  3. if(UIVideoAtPathIsCompatibleWithSavedPhotosAlbum(path))  
  4. {  
  5.     UISaveVideoAtPathToSavedPhotosAlbum(path,nil,nil,nil);  
  6. }  
  7.   
  8. else {  
  9.     NSLog(@"no available");  
  10.     UIAlertView *alert=[[UIAlertView alloc] initWithTitle:nil message:@"no available" delegate:self cancelButtonTitle:nil otherButtonTitles:nil];  
  11.     [alert show];  
  12.     [alert release];  
  13. }  

转载于:https://www.cnblogs.com/85538649/archive/2011/12/07/2279383.html

你可能感兴趣的文章
STM32Flash读写
查看>>
国家自科委管文科学部认定的国内30种重要期刊
查看>>
表单验证
查看>>
原生JS数组去重的几种方法
查看>>
POJ——字符串插入
查看>>
1088. [SCOI2005]扫雷Mine【网格DP】
查看>>
BZOJ1718:[USACO]Redundant Paths 分离的路径(双连通分量)
查看>>
Java Decompiler(Java反编译工具)
查看>>
win下php的memcached的安装与使用
查看>>
git 常用命令笔记
查看>>
php使用supervisor管理进程脚本
查看>>
5.19 - Stacks and Queues
查看>>
读取config文件中的键值
查看>>
Starling框架帮助手册中文版(PDF下载)
查看>>
(五)Maven中的聚合和继承
查看>>
(三)SpringBoot之配置文件详解:Properties和YAML
查看>>
实验一报告
查看>>
JsRender 前端渲染模板常用API学习
查看>>
MySQL数据库引擎介绍、区别、创建和性能测试的深入分析
查看>>
【分布式计算】MapReduce的替代者-Parameter Server
查看>>