Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to display 'Camera Roll' directly using ImagePickerController

I want to directly open the 'Camera Roll' album using the imagePickerController instead of showing all 3 albums (camera roll, photo library, last import).

Is there any way to do that?

like image 332
Zhen Avatar asked Oct 21 '11 08:10

Zhen


1 Answers

Use

imagePickerController.sourceType = UIImagePickerControllerSourceTypeSavedPhotosAlbum;

It will directly take you to camera roll.

like image 190
Shan Avatar answered Oct 22 '22 06:10

Shan