tags:

views:

354

answers:

1

Hi , i try to save a photo with a button to camera roll after user capture a picture with Camera , but i dont know why my picture doesn't save at photo library !! here is my code :

-(IBAction)savePhoto{

    UIImageWriteToSavedPhotosAlbum(img.image,nil, nil, nil);

}

-(IBAction)takePic {

    ipc = [[UIImagePickerController alloc]init];
    ipc.delegate = self;
    ipc.sourceType = UIImagePickerControllerSourceTypeCamera; 
    [self presentModalViewController:ipc animated:YES];

}




- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {

    img.image = [[info objectForKey:UIImagePickerControllerOriginalImage]retain];
    [[picker parentViewController]dismissModalViewControllerAnimated:YES];
    [picker release];   
}

ipc is UIImagePickerController and img is UIIMageView

what's my problem ?

+1  A: 

First make sure you are calling savePhoto. Then you can add an assertion to check that the image is not nil:

- (IBAction) savePhoto {
    NSParameterAssert(img.image);
    UIImageWriteToSavedPhotosAlbum(img.image, nil, nil, nil);
}
zoul