gpt4 book ai didi

swift - 无法将类型 '() -> Data?' 的值转换为预期参数类型 'Data'

转载 作者:行者123 更新时间:2023-11-30 11:07:36 25 4
gpt4 key购买 nike

if let imageData = UIImage.pngData(image) {
let imageFile = PFFile(name: "image.png", data: imageData)
post["imageFile"] = imageFile
post.saveInBackground { (success, error) in
}
}

这段代码一直显示错误:

Cannot convert value of type '() -> Data?' to expected argument type 'Data'

我以为UIImage.pngData只会返回 Data? 的值类型.

最佳答案

您的第一行不正确。您需要在 UIImage 实例上调用 pngData

if let imageData = image.pngData() {

关于swift - 无法将类型 '() -> Data?' 的值转换为预期参数类型 'Data',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52528784/

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