访问 iPhone 照片库中的所有照片?
是否可以从 iPhone 照片库中获取数组或其他内容中的所有照片? UIImagePickerController 允许一次仅选择一张图片。
Is it possible to get all photos in an array or something from iPhone photo library ? UIImagePickerController allows to choose only one picture at a time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调用
ALAssetsLibrary
的-enumerateGroupsWithTypes:usingBlock:failureBlock:
枚举一个或多个资产组,然后通过-[ALAssetGroup 枚举每个组中的资产(照片) enumerateAssetsUsingBlock:]
。该文档包含所有详细信息。Call
ALAssetsLibrary
's-enumerateGroupsWithTypes:usingBlock:failureBlock:
to enumerate one or more assets groups and then enumerate the assets (photos) in each groups with-[ALAssetGroup enumerateAssetsUsingBlock:]
. The documentation has all the details.使用 ELCImagePickerController
用于显示多个资产图像。
USE ELCImagePickerController
used to display more than one asset images.