我正在使用swift 3中的迷宫游戏进行编译,但是当我运行它时,我收到了EXC_BAD_INSTRUCTION错误。我对swift相对较新,所以我不知道如何正确调试它。以下是获取错误的代码:
init(window:SKScene, width:Int, height:Int){
widthOfBoard = width
heightOfBoard = height
for i in 0..<widthOfBoard {
var temp:[cell]!
for j in 0..<heightOfBoard {
let tempCell = cell(x: i, y: j, boardWidth: widthOfBoard, boardHeight: heightOfBoard, screenSize: window.frame)
temp.append(tempCell)
}
cells.append(temp)
}
stackOfCells.append(cells[0][0])
recursiveMaze(currentX: 0, currentY: 0, window: window)
}
我收到了cells.append(temp)
的错误。
我也得到了每个错误 these locations
答案 0 :(得分:3)
temp
导致崩溃的nil
。任何粗心写的感叹号都可能导致崩溃。
您声明了变量temp
,但如果要向其中添加项目,则必须初始化数组:
var temp = [cell]()
顺便说一句:类名应该以大写字母开头。