Trying to save image to Photo album with custom name in iOS(尝试在 iOS 中使用自定义名称将图像保存到相册)
问题描述
我有一个 iOS 应用程序,我在其中将图像保存到我的照片文件夹到我的 iPad.但是,我想做的是使用自定义名称存储图像(例如,使用实际捕获图像的日期和时间戳),以便将来更容易检索它.
I have an iOS application where I am saving an image to my photos folder to my iPad. However, what I would like to do is store the image with a custom name (e.g. using the date and time stamp for when the image was actually captured), so that it would be easier for it to be retrieved in the future.
我目前用于存储图像的代码如下:
My code at the moment for storing my images is as follows:
- (IBAction)imageCapture:(id)sender {
UIImage *myImage = [_imageView currentImage];
UIImageWriteToSavedPhotosAlbum(myImage, nil, nil, nil);
}
我可以存储我的图片,但如何在存储之前为图片命名(例如082620131100am.png"?
I am able to store my image, but how do I name the image prior to storing it (e.g. "082620131100am.png"?
推荐答案
由于您无法覆盖用户照片库中的任何图像/视频,您将无法为文件指定特定的文件名.
Since you cannot override any image/video in the user's photo library, you will not be able to give the the file a specific filename.
如果您使用以下方法,您可以向图像添加一些元数据:writeImageDataToSavedPhotosAlbum:metadata:completionBlock:
,但您将无法设置文件名.
You can add some metadata to your image if you use the method: writeImageDataToSavedPhotosAlbum:metadata:completionBlock:
, but you will not be able to set the filename.
这篇关于尝试在 iOS 中使用自定义名称将图像保存到相册的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:尝试在 iOS 中使用自定义名称将图像保存到相册
基础教程推荐
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01