如何保存和检索相册中的照片及其名称
我有以下疑问:
我们可以将照片(图像)保存到具有“特定名称”的相册中吗?或者我们可以在保存照片后访问照片的名称吗?
我们可以从相册中访问带有其名称的照片吗?
请帮忙。
提前致谢。
I have the following doubts:
Can we save a photo(image) to photo album with a "specific name" or can we access the name of the photo after saving it?
Can we access a photo with its name from the photo album?
Please help.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是用用户指定名称写入图像的代码
This is the code for writing images with user specified name
使用委托
UIImagePickerControllerDelegate
来调用相机或图像库。调用相机:
调用库:
完成后,将调用委托方法:
将图像写入库使用:
或将从照片库中选取的所选图像保存到
UIImage
并对其执行进一步的操作。Using delegate
UIImagePickerControllerDelegate
for invoking camera or image library.To Invoke Camera:
To Invoke Library:
Once done, delegate method gets called:
To write image to library use:
or save selected image picked from photo library to
UIImage
and perform further actions on it.