我得到了这样的东西:
specialized _ContiguousArrayBuffer._checkValidSubscript(Int) -> () [inlined].
当我尝试调试我的代码时,打印我放入的数组或项目的描述,我的 XCode 关闭。
崩溃详情:
System Integrity Protection: enabled
Crashed Thread: 24 <DBGLLDBSessionThread (pid=666)> Dispatch queue: DVTInvalidationPreventionQueue
Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000000
Exception Note: EXC_CORPSE_NOTIFY
你有什么想法吗?
Best Answer-推荐答案 strong>
当我尝试在 nil 对象上使用属性时遇到了同样的错误
for trip: Trip in tripArray {
NSLog("\(trip.hotel.name)") // hotel == nil
}
关于ios - 立即 XCode 崩溃 (Swift 2.2),我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37513172/
|