用于访问 iOS 照片库的简单助手。
将 MobileCoreServices 和 AssetLibrary 框架添加到您的 "Link Binary With Libraries" 构建阶段。
将 BPPhotoLibrarian 目录添加到您的项目,并导入头文件。
#import "BPPhotoLibrarian.h"
检查可用功能并访问照片。
if ([BPPhotoLibrarian canRetrieveLastPhoto]) {
[BPPhotoLibrarian retrieveLastPhoto:^(UIImage *image) {
// Show the photo.
} error:^(NSError *error) {
// Handle the error.
}];
}
有关更多信息,请参阅 CameraRoller 示例项目。
MIT - 查看 LICENSE.txt
Brian Partridge - @brianpartridge 在 Twitter 和 alpha.app.net