Enable and Debug Zombie objects in iOS using Xcode 5.1.1

牧云@^-^@ 提交于 2019-11-26 17:13:22

问题


I have an iOS(7.1) app which crashes due to EXC_BAD_ACCESS. If I am not wrong, this happens due to the use of an object which is already de-allocated. After a bit of searching, I found out that enabling Zombie objects help to pin point the line of error. As I am using xcode 5.1.1, I have done the following to Enable Zombie Objects.


And then, checking the Enable Zombie Objects checkbox,


Then I went to Instruments panel, selected Zombies,clicked Profile and got this,


Now the simulator (in the left background), which had a button and a textfield is running blank and also I can't understand anything on the Instruments panel.

What should be the next step? I mean how can I get the lines which are causing the bad access? I am stuck on this for hours but still couldn't find the procedure.

Any help is appreciated.


回答1:


Accessing a deallocated object is not the only reason you would get EXC_BAD_ACCESS. Other causes of bad access errors include accessing nil pointers and going past the bounds of an array.

Looking at your screenshots, you are not using a deallocated object. If you were using a deallocated object, the Zombies template in Instruments would let you know. Instruments would show a message similar to the following:

Your next step should be to set an exception breakpoint in Xcode. When your app crashes, Xcode will pause your app at the point where the crash occurs. To set an exception breakpoint, open the breakpoint navigator by choosing View > Navigators > Show Breakpoint Navigator. Click the + button at the bottom of the navigator and choose Add Exception Breakpoint.



来源:https://stackoverflow.com/questions/25994549/enable-and-debug-zombie-objects-in-ios-using-xcode-5-1-1

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!