I want to save image on the photoalbum and save it as a wallpaper?
I wrote code for saving image,
How to set the picked image as wallpaper
I wrote code for saving image,
Code:
UIImage *birdimage = [UIImage imageNamed:@"Bird1.jpg"];
NSData * imageData = UIImagePNGRepresentation(birdimage);
UIImage *theImage = [UIImage imageWithData:imageData];
UIImageWriteToSavedPhotosAlbum(theImage, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
UIImagePickerController * picker = [[UIImagePickerController alloc] init];
picker.delegate = self;
[self presentModalViewController:picker animated:YES];
[picker setAllowsImageEditing:YES]
How to set the picked image as wallpaper