我正在制作一个需要使用segues和cell传输数据的应用。我有两个几乎相同的视图控制器,但每当我启动它时,其中一个在第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!
}
我该如何解决这个问题?