TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Dec 2014 |
Maintained by Unclaimed.
Simple helpers for accessing the iOS photo library.
Add the MobileCoreServices and AssetLibrary frameworks to your "Link Binary With Libraries" build phase.
Add the BPPhotoLibrarian directory to your project and import the header.
#import "BPPhotoLibrarian.h"
Check for available functionality and access photos.
if ([BPPhotoLibrarian canRetrieveLastPhoto]) {
[BPPhotoLibrarian retrieveLastPhoto:^(UIImage *image) {
// Show the photo.
} error:^(NSError *error) {
// Handle the error.
}];
}
For more, see the CameraRoller demo project.
MIT - See LICENSE.txt
Brian Partridge - @brianpartridge on Twitter and alpha.app.net