gpt4 book ai didi

parse-platform - Swift 2错误处理-使用Parse进行回调和图像保存

转载 作者:行者123 更新时间:2023-12-03 08:53:51 25 4
gpt4 key购买 nike

我已经尝试使用转换工具来更新这几行代码,但是不幸的是,该过程并未解决这两个错误。

您能否帮助我了解我是否需要介绍do {和错误处理? (我是新来的迅速!)。

我收到的错误消息如下:“可以抛出 call ,但未将其标记为“try”,并且未处理该错误”

override func viewDidAppear(animated: Bool) {
super.viewDidAppear(animated)

query.findObjectsInBackgroundWithBlock {(结果:[PFObject] ?,错误:NSError?)->无效
self.posts = result as? [Post] ?? []

// 1
for post in self.posts {
// 2
let data = post.imageFile?.getData() --> this is where I get the error message
// 3
post.image = UIImage(data: data!, scale:1.0)
}

self.tableview.reloadData()
}

最佳答案

代替这个:let data = post.imageFile?.getData()改用它:

do
{
try let data = post.imageFile?.getData()
}
catch
{
print("Error: \(error)")
//Handle the error instead of print probably
}

关于parse-platform - Swift 2错误处理-使用Parse进行回调和图像保存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33425004/

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