Accessing photos from a specific album from photolibrary(从照片库访问特定相册中的照片)
问题描述
在使用 uiimagepicker 时,有没有什么方法可以指定应该从哪个用户创建的相册中挑选图像?我来解释一下.假设 ipad 中有两个用户创建的相册.让他们命名为朋友"和学生"'.有没有办法指定照片应该从这些相册中的哪一个访问?或者我怎么知道所选择的图像所属的相册的名称?
While using uiimagepicker, is there any way of specifying which user created album the images should be picked from?Ill explain.Suppose there are two albums created by the user in the ipad.Let them be named 'friends' and 'students'.Is there any way of specifying which one of these albums the photos should be accessed from ?or How can i know the name of the album the picked image belongs to?
可以通过 alsset 方法完成吗?我想做的是使用他们的名字访问特定同步相册中的照片.甚至可能.我的意思是 iphone 使用自己的命名约定还是保留原始图像名称?
can it be done via alsset methods?What i want to do is access photos from a particular synched album using their names.Is it even possible.I mean does iphone use its own naming conventions or are the original image names retained?
推荐答案
您应该使用 ALAssetsLibrary 并制作自己的自定义选取器.您可以在 https://github.com/B-Sides/ELCImagePickerController<找到使用 ALAssetsLibrary 的自定义图像选择器/a>
You should use ALAssetsLibrary and make your own custom picker. You can find a custom image picker using ALAssetsLibrary at https://github.com/B-Sides/ELCImagePickerController
当用户从自定义选择器中选择图像时,您将返回 ALAsset 对象,您可以从中获取所需的图像、它所属的专辑等.您可以保存并修改自定义选择器以导航到选定的专辑.
When the user selects an image from the custom picker, you are returned with the ALAsset object from which you can get the required image, album it belongs to etc. You can save that and modify the custom picker to navigate to a selected album.
这篇关于从照片库访问特定相册中的照片的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从照片库访问特定相册中的照片
基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01