iPhone如何显示我的文档目录中的照片?

时间:2012-05-04 11:56:05

标签: iphone ios cocoa-touch uiimagepickercontroller photolibrary

我一直在使用UIImagePicker控制器拍照并将其保存到我的文档目录中。现在我希望能够将它们呈现给用户进行挑选。 UIImagePicker具有整洁的功能

imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

当我设置此属性时,将显示库中的所有图像。有什么方法可以使用UIImagePicker从文档目录中显示我的照片吗?

1 个答案:

答案 0 :(得分:2)

UIImagePicker唯一支持的来源是图书馆,相机或已保存的相册。请参阅UIImagePickerControllerSourceType @ http://developer.apple.com/library/ios/#documentation/uikit/reference/UIImagePickerController_Class/UIImagePickerController/UIImagePickerController.html

enum {
   UIImagePickerControllerSourceTypePhotoLibrary,
   UIImagePickerControllerSourceTypeCamera,
   UIImagePickerControllerSourceTypeSavedPhotosAlbum
};
typedef NSUInteger UIImagePickerControllerSourceType;