我猜应用程序沙箱是这里的关键问题。
UIImagePickerController将允许用户从相机卷中选择一张照片,与类固醇/PhoneGap摄像头API相同。
ELCImagePickerController支持本地应用程序中的多个选择。
ALAssetsLibrary似乎很有希望,但PhotosByLocation示例项目说,“资产需要从iTunes同步到设备上,才能显示在选择器中”,这让我觉得它无法完全访问相机卷。
是否很容易获得用户的许可来扫描相机卷中的所有照片以提取和绘制照片时间戳?html5框架工作解决方案被推断..。
发布于 2013-12-18 19:07:55
我再次为ALAssetsLibrary阅读了API文档,并发现了以下内容:
ALAssetsGroupSavedPhotos - All the photos in the Camera Roll.
ALAssetsGroupAlbum - All the albums created on the device or synced from iTunes,
not including Photo Stream or Shared Streams因此,我猜想ALAssetsLibrary确实是我用来迭代相机卷中所有照片的类。有谁能确认一下,这是我唯一需要的吗?
[ALAssetsLibrary authorizationStatus] == ALAuthorizationStatusAuthorized;https://stackoverflow.com/questions/20650656
复制相似问题