gpt4 book ai didi

ios - 如何在 swift 中使用 Key Value Observer?

转载 作者:搜寻专家 更新时间:2023-10-31 22:35:30 25 4
gpt4 key购买 nike

为了我的目的,我设置了 AVFoundation 来拍照,我想确保在保存 imagedata 之前完成曝光和白平衡(adjustingExposure,adjustingWhiteBalance)的调整。否则第一张照片会显得很暗。

如何设置键值观察器以在值更改后运行代码?以及如何/在哪里是启动它的最佳地点?

最佳答案

在你得到图像后用 didSet 创建一个 var 并且那个 var 保存图像例如

var image : UIImage{//or what type your image is,Maby NSData,but I'm not sure
didSet{
// adjustingExposure and adjustingWhiteBalance
}

然后你保存它 EX:

func grabImage(){//is an example IDK your code,I say that this func captured the imagedate
image = imageThatYouTook
//then save the image data from the image var
}

关于ios - 如何在 swift 中使用 Key Value Observer?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29714289/

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