博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iphone ios XCode4如何调试程序忽然崩溃而找不到挂的代码
阅读量:4971 次
发布时间:2019-06-12

本文共 1587 字,大约阅读时间需要 5 分钟。

XCode4设置不太一样: 在Edit–>Scheme里面 找到Arguments(在xcode 4.2中,在菜单 product->edit scheme中)

把下面3个值设置成YES

NSAutoreleaseFreedObjectCheckEnabled

NSZombieEnabled

NSDebugEnabled

另外转载2篇调试
EXC_BAD_ACCESS的好文
http://blog.zol.com.cn/2387/article_2386505.html
http://www.cnblogs.com/likwo/archive/2011/02/28/1967066.html
老外也有这么说的:
I had similar issue; turns out I was not retaining a UIButton properly. How I found the cause: - Enable zombies - Run the project with 'Allocations' instrument - Use the app to trigger the bug - Check that Instruments show message 'Zombie Messaged' on the timeline - There should be a link that opens CALayer details: when it was allocated and deallocated - You are interested in the place where is was allocated, should be that aha!!! place in your code
我是用模拟器上 使用zombies,然后运行程序,崩溃的时候会有提示崩溃点,同时有代码。
转另一个人文章:

 方法一:

PAEHoldTranMainControl *control = [[PAEHoldTranMainControl alloc]init];

            [self.navigationController pushViewController:control animated:YES];

            [control release];

alloc了一个control,release,运行就崩溃了。而且没有任何提示,console里只显示exc_bad_access

利用NSZombieEnabled参数,MallocStackLogging参数,显示 -[CALayer release]: message sent to deallocated instance 0x13570810

折腾了半天,最后用如下方法定位问题:

打开instrument-->ios simulator:

选择all--》 zombies运行,断开时,查看stack trace,即可跟踪

 

 方法二:例如console里的输出如下:

TestAPP[1472:207] *** -[NSObject release]: message sent to deallocated instance 0x6019170

在 gdb console 里面, 运行 shell malloc_history <pid> <mem_address>

pid = process ID (e.g. 1472)

mem_address = memory address of instance (e.g. 0x6019170) 

即会出现调用栈

转载于:https://www.cnblogs.com/codeApp/archive/2012/11/15/2771891.html

你可能感兴趣的文章
JSP常用标签
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>
mysql adddate()函数
查看>>
mysql sin() 函数
查看>>
mysql upper() 函数
查看>>
单片机复位电路
查看>>
php json_decode失败,返回null
查看>>
3-day3-list-truple-map.py
查看>>
Edit控件显示多行文字
查看>>
JS第二周
查看>>
dataTable.NET的search box每輸入一個字母進行一次檢索的問題
查看>>
Python 文件处理
查看>>
邻接表详解
查看>>
迭代dict的value
查看>>
eclipse package,source folder,folder区别及相互转换
查看>>
Py 可能是最全面的 python 字符串拼接总结(带注释版)
查看>>