gpt4 book ai didi

swift - 崩溃: fatal error: unexpectedly found nil while unwrapping an Optional value

转载 作者:行者123 更新时间:2023-11-30 10:11:38 35 4
gpt4 key购买 nike

我不明白为什么会收到此错误: fatal error :在解包可选值时意外发现 nil

这是我的ViewController代码:

class TableViewController: UITableViewController {


var objects = [Play]()


override func viewDidLoad() {
super.viewDidLoad()

let container = CKContainer.defaultContainer()
let publicData = container.publicCloudDatabase

let query = CKQuery(recordType: "Play", predicate: NSPredicate(format: "TRUEPREDICATE", argumentArray: nil))
publicData.performQuery(query, inZoneWithID: nil) { results, error in
if error == nil { // There is no error
for play in results! {
let newPlay= Play()
newPlay.title = play["Title"] as! String
newPlay.description = play["Description"] as! String

NSLog("Title %@", newPlay.title);

self.objects.append(newPlay)

dispatch_async(dispatch_get_main_queue(), { () -> Void in
self.tableView.reloadData()
})
}
}
else {
print(error)
}
}

}

override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
// #warning Incomplete implementation, return the number of rows
return objects.count
}


override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCellWithIdentifier("reuseIdentifier", forIndexPath: indexPath)

let object = objects[indexPath.row]

if let label = cell.textLabel{
label.text = object.title
}

return cell
}

一切似乎也都连接在我的 Storyboard中。

enter image description here

有什么想法吗?将根据需要发布任何额外的代码,谢谢!

最佳答案

我从 CloudKit 中提取了错误的 key 。感谢您的帮助!

关于swift - 崩溃: fatal error: unexpectedly found nil while unwrapping an Optional value,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32672059/

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