I was creating an app and I want to implement functionality of camera in our app so I using UIImagePickerController to pick image using camera and it executes successfully.
But after clicking image I am unable to browse images from our device memory,
I am new in iPhone so please help me.
Pick image from device memory using UIImagePickerController
1874
19-Oct-2015
Updated on 20-Oct-2015
Tarun Kumar
20-Oct-2015Your problem is not so big so don't worry, here I am giving you the code which helps you to pick image from library:
create an action method browseImage: and use this code
- (IBAction)browseImage:(id)sender {UIImagePickerController *picker = [[UIImagePickerController alloc]init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
[self presentViewController:picker animated:YES completion:NULL];
}