Swift4:致命错误:展开一个可选值时意外发现nil

时间:2018-10-02 06:59:53

标签: ios json swift

我已经使用xcode 10创建了一个应用,并使用了Swift 4。

我遇到错误:

  

致命错误:解开可选值时意外发现nil

我开始使用NavigationController,现在出现错误。在使用前的状态下进行Segue时,未发生任何错误。 我检查了Typo等,但是没有问题。

这是错误

button

商店视图控制器的所有视图

<button type="button" />

2 个答案:

答案 0 :(得分:0)

如@Scriptable所述,您不应强行打开包装。

您可以为断点导航器添加异常断点,如下所示 enter image description here

然后 enter image description here

希望这将有助于查明问题所在。

答案 1 :(得分:0)

声明数组如下

var store = [Store]()

按照以下说明更改TableView数据源:

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

        switch section {
        case 0:
            return store.count > 0 ? 1 : 0 // if array count greater than return 1 else 0
        case 1 :
            return store.count > 0 ? 1 : 0
        case 2 :
            return store.count > 0 ? 1 : 0
        default:
            return 0
        }
    }