iPhone 使用 AlAssetLibrary 自动将照片与我们的应用程序同步
我刚刚开始开发一个应用程序,我想在其中自动同步存储在用户照片库中的所有图像作为资产。
我能够获取作为资产存储的图像的 URL。
e.g. assets-library://asset/asset.JPG?id=1000000003&ext=JPG
现在,如何将此图像复制到应用程序的文档目录中,或者如何通过在 NSData
或 UIImage
中获取存储在资产中的图像来显示该图像?
提前致谢。
I have just started developing an application in which I want to auto sync all the images stored in user's photo library as assets.
I am able to get URL for images those are stored as assets.
e.g. assets-library://asset/asset.JPG?id=1000000003&ext=JPG
Now, how do I copy this image in to document's directory of my application or how do I just display image stored in assets by getting that in NSData
or in UIImage
?
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在
UIImagePickerControllerDelegate
委托实现中使用以下代码You can use the following code in
UIImagePickerControllerDelegate
delegate implementation