Crash: fatal error: unexpectedly found nil while unwrapping an Optional value

Crash: fatal error: unexpectedly found nil while unwrapping an Optional value

我不明白为什么会出现此错误:fatal error: unexpectedly found nil while unwrapping an Optional value

这是我的 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
}

似乎一切都与我的情节提要有关。

有什么想法吗? post 是否需要任何额外的代码,谢谢!

我从 CloudKit 拔错了钥匙。感谢您的帮助!