gpt4 book ai didi

swift - 上下文类型 'AnyObject' 不能与数组文字一起使用

转载 作者:IT王子 更新时间:2023-10-29 05:31:43 25 4
gpt4 key购买 nike

我正在尝试升级以将我的项目升级到 Swift 2,但我遇到了以下错误:

Contextual type 'AnyObject' cannot be used with array literal

这是我的代码:

func imagePickerController(picker: UIImagePickerController, didFinishPickingImage image: UIImage!, editingInfo: [NSObject : AnyObject]!) {

let data = UIImageJPEGRepresentation(image, 0.08)
let file = PFFile(data: data!)

PFUser.currentUser()!["Picture"] = [file]
try! PFUser.currentUser()!.save()}

这是出现问题的行

        PFUser.currentUser()!["Picture"] = [file]

非常感谢您的帮助!! (我是初学者,...)

最佳答案

替换这一行:

PFUser.currentUser()!["Picture"] = [file]

与:

PFUser.currentUser()!["Picture"] = file

编辑:如前所述,最好不要强制展开条件并执行以下操作:

guard let user = PFUser.currentUser() else {
return
}
user["Picture"] = file

关于swift - 上下文类型 'AnyObject' 不能与数组文字一起使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35047578/

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