我希望有人可以帮助解决我在代码中某处引入的错误。在我尝试清除旧的注释代码并且必须删除某些内容之前,一切都运行良好。
它是一个 Cocos2d 应用程序。每当调用 UIReferenceLibraryViewController 的 initWithTerm 方法时,它就会崩溃。
reference = [[UIReferenceLibraryViewController alloc] initWithTerm:[[cell viewWithTag:1] text]];
这在过去工作得很好。现在它正在崩溃
CoreFoundation`CFRelease:
0x24633b0: pushl %ebp
0x24633b1: movl %esp, %ebp
0x24633b3: pushl %ebx
0x24633b4: pushl %edi
0x24633b5: pushl %esi
0x24633b6: subl $76, %esp
0x24633b9: calll 0x24633be ; CFRelease + 14
0x24633be: popl %ebx
0x24633bf: movl %ebx, -32(%ebp)
0x24633c2: movl 8(%ebp), %edi
0x24633c5: testl %edi, %edi
0x24633c7: jne 0x24633df ; CFRelease + 47
0x24633c9: int3
0x24633ca: calll 0x25baa00 ; symbol stub for: getpid
0x24633cf: movl %eax, (%esp)
0x24633d2: movl $9, 4(%esp)
在这一行,0x24633ca: calll 0x25baa00
I am getting EXC_BREAKPOINT (code=EXC_I386_BPR, subcode=0x0)
在调试导航器中,我看到以下内容
任何建议,将不胜感激。