我正在制作一个需要使用 segues 和单元格传输数据的应用程序。我有两个几乎相同的视图控制器,但其中一个在我启动它时在第 3 行出现以下错误:
我知道 Bad Instruction 错误意味着它正在寻找 nil,但我不知道如何解决它。这是不起作用的代码:
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell: InstrumentTableCell! = tableView.dequeueReusableCellWithIdentifier(identifier) as? InstrumentTableCell
cell.configurateTheCell(recipies[indexPath.row])
return cell!
}
我该如何解决?