-1

I am developing a app in which i capture a image and save image into gallery.After that i open the gallery now i want to view full screen slide show of saved images.

Am using the following code it just open the image full screen with choose and cancel options but i need slide show.

pickerview.allowsEditing=YES; 

pickerview.sourceType=UIImagePickerControllerSourceTypePhotoLibrary; 

[self presentViewController:pickerview animated:YES completion:nil];
iBhavin
  • 1,261
  • 15
  • 30
Amit Saini
  • 239
  • 1
  • 10
  • possible duplicate of [UIImagePicker slideshow of images on selection](http://stackoverflow.com/questions/15360209/uiimagepicker-slideshow-of-images-on-selection) – n00bProgrammer Aug 27 '14 at 11:54

1 Answers1

1

Try this code

picturePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
picturePicker.mediaTypes =[NSArray arrayWithObject:(NSString *)kUTTypeImage];
picturePicker.allowsEditing = YES;

[self presentViewController:picturePicker animated:NO completion:nil];
AP_
  • 1,013
  • 12
  • 13