Xcode错误线程1:EXC_BREAKPOINT(代码= 1,子代码= 0x1001f276588)

时间:2016-05-31 21:20:33

标签: ios xcode

在实际设备上运行项目时出现名义错误。有时子代码会有所不同。我没有任何断点。我检查了。相信我。

enter image description here

Here are my files。启动时会发生此错误。

我该怎么做才能解决这个问题?提前谢谢!

编辑:fatal error: unexpectedly found nil while unwrapping an Optional value将打印到控制台。

2 个答案:

答案 0 :(得分:1)

我认为错误在这部分:

let dir = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory.DocumentDirectory, NSSearchPathDomainMask.AllDomainsMask, true).first 
let filePath = NSURL(fileURLWithPath: dir!).URLByAppendingPathComponent("file.txt")

它被迫打开" dir",在这种情况下可能无法在您的实际设备上使用。这会导致立即崩溃。

答案 1 :(得分:0)

我发现了问题:我试图使用一个零的变量。我知道调试器消息说的是什么,但我想出了哪一个。

enter image description here

好吧,好吧。我搞砸了。感谢大家的帮助!