gpt4 book ai didi

iphone - 如何将图像保存到相机胶卷?

转载 作者:IT老高 更新时间:2023-10-28 12:19:32 25 4
gpt4 key购买 nike

我是 Xcode 的新手(使用 4.3),不知道如何将图像保存到设备的相机胶卷。到目前为止,我所做的只是为按钮设置一个 IBAction 以保存图像。我可以使用什么库方法或函数将图像保存到用户的相机胶卷?

最佳答案

您使用 UIImageWriteToSavedPhotosAlbum()功能。

//Let's say the image you want to save is in a UIImage called "imageToBeSaved"
UIImageWriteToSavedPhotosAlbum(imageToBeSaved, nil, nil, nil);

编辑:

//ViewController.m
- (IBAction)onClickSavePhoto:(id)sender{

UIImageWriteToSavedPhotosAlbum(imageToBeSaved, nil, nil, nil);
}

关于iphone - 如何将图像保存到相机胶卷?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11131050/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com