0

セグエとセルを使用してデータを転送する必要があるアプリを作成しています。2 つのほぼ同一のビュー コントローラーがありますが、そのうちの 1 つを起動するたびに 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!
    }

これを修正するにはどうすればよいですか?

4

0 に答える 0