iphone 存图片和视频到iPhone相册

1:原文摘自:http://wonderzl.iteye.com/blog/1007642

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

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. }  
posted on 2011-12-07 15:36  wtq  阅读(945)  评论(0编辑  收藏  举报