我的程序中没有改变任何内容,Xcode
突然让我崩溃了:
app(1010,0x1112783c0) malloc: *** mach_vm_map(size=281036240113664) failed (error code=3)
*** error: can't allocate region
*** set a breakpoint in malloc_error_break to debug
app(1010,0x1112783c0) malloc: *** mach_vm_map(size=421554360172544) failed (error code=3)
*** error: can't allocate region
我开始在代码中添加return;
,以找到正确的位置。
事实证明,导致这一点的事情几乎完全不同,上个月没有改变它们。
其中一个从未让我遇到任何问题的是:
var data = [[String:String]]()
let dictionary1: [String: String] = ["IMAGE": "motor.png","TITLE":"motor","SUBTITLE":"-"]
data.append(dictionary1) // ******** crash is here !
我的直觉说它不是问题的所在,我找不到解决这个问题的方法。
尝试重新启动,转到以前的版本,没有。
我怎样才能找到它是什么?