Debugging EXC_BAD_ACCESS - objective-c

I've not worked on this project in quite some time.. When I left it some time in the iOS 8s it ran just fine, however.. on the latest XCode I'm getting many inconsistent EXC_BAD_ACCESS crashes. Now afaik it's requiring a deallocated object. However, the error is lacking where to look. This is quite a big project and like I say, the errors are inconsistent.
I've tried enabling zombie objects, as well as passing it as a starting parameter. However, this is leading me to no joy. I'm expecting something in the debug console with zombies enabled, is this right?
If anyone has any tips on how to find an easier way to debug this, as opposed to tinkering with everything and hoping it works..

EXC_BAD_ACCESS just means that your app is trying to access an invalid memory address. While it is oft caused be a deallocated object, that isn't always the case.
When the app crashes, there should be a crash log or backtrace. Post it as that'll provide clues.
Lovely; a crash entirely in framework code. Seeing as how it is SceneKit that is crashing, I would suggest replacing any graphic assets with new ones and see if that fixes it (even if it doesn't look right). Then check to make sure all of your geometries and layouts are correct.

Have you tried adding a global Exception or Symbolic breakpoint? Those usually help me 99% of the time when I encounter issues without any sort of backtrace.

Related

I have an error occurring in the machine code for a release that I wrote [duplicate]

I've got an app that gets information from a SOAP web service and I want to display the results in a UITableView.
I had a previous version of this app and I'm creating a new version to basically clean things up and get rid of a bunch of legacy code that's deprecated and no longer used.
In the previous version, this worked well. In the new version, not so much.
Basically, the current scenario is returning 3 strings that I'm trying to use as the basis for the data in my UITableView.
I'm struggling with this issue because it's so stinkin' hard to track down EXC_BAD_ACCESS errors!
(Parenthetically, if someone has a way to make the debug experience more like Visual Studio, I'd love to hear it! It's so frustrating to not have any idea which line caused the error, and also to not be able to look through my local variables at the time of the crash to see what's what. I've already added in the exception breakpoint, but that doesn't seem to do much.)
Anyway, the line that's causing the error APPEARS to be:
return [[self Libraries] count];
It occurs in tableView:numberOfRowsInSection:.
The error message I get APPEARS to reference a string that should be stored in the NSMutableArray [self Libraries].
What's going on here?
I'm using ARC, so shouldn't all of my memory management be correctly handled?
I don't have any manual release statements in my code ANYWHERE!
Please help me fix this!
Set NSZombieEnabled, MallocStackLogging, and guard malloc in the debugger. Then, when your App crashes, type this in the gdb console:
(gdb) info malloc-history 0x543216
Replace 0x543216 with the address of the object that caused the crash, and you will get a much more useful stack trace and it should help you pinpoint the exact line in your code that is causing the problem.
See this article for more detailed instructions.
ARC relies on the Apple standard/recommended naming practices. Check that you are not violating any of them.
Just for starters, if "Libraries" is an instance there are are naming issues.
OK, so I feel a little bit silly, but I've got two production machines. On one of them, I had installed a copy of Xcode 4.2 beta alongside the final, production copy. I forgot to uninstall the beta copy and was using it to run my code. As soon as I cleared that up and ran my code against the final, released Xcode 4.2, all works fine again.
As I mentioned to Jonathan Grynspan above, I DO understand Obj-C memory management. For some reason, I was getting a retain/release/release (performed by ARC), and that bug is remedied in the final version.
Thanks for the help in tracking this down! At least I got a definitive answer to WHY the problem existed!

debugging captainhook tweak

I'm working on a tweak using captainhook.
I did something like:
[self.delegate somemessage];
//the message is a private api. I don't know its implementation detail.
and then the app used up a lot of system resources and got killed minutes later.
the problem is none of logs, errors or exceptions can be found in console. there is only a LowMemory crash report.
I'd like to know what's the possible causes of that, how can I deal with it?
I dont have even the least idea where to start to debug it…

How to track down a CFRetain crash?

I've been trying to tackle this crash and just don't know where to begin. Can someone help me figure out how to use Xcode's tools to navigate this information properly to find the culprit? I don't even know what these details are:
The Instruments tool should be your first port of call - particularly the leaks and allocations analyser.
To use it, select the Profile option off the Product menu in Xcode.
You might like to investigate using the NSZombie object which is designed to catch over-releasing of objects.
It may of course be that you're simply passing a pointer to something that is not a Core Foundation/Cocoa object where one is expected.
A good first step for xcode debugging is often setting an exception breakpoint. To do this select the exceptions tab in the left sidebar, and click the plus at the bottom and select Exception breakpoint. This can help because it will pause execution at the point any exception is thrown thus making it easier to track down.
That said, based on the screen shot you have posted, it looks like an object is getting released twice, so that might not help as much. Using log statements or additional breakpoints throughout the code might help you track down where the problem is occurring.
The details shown in the screenshot are the compiled assembly code, annotated with what is being called. CFRetain is used internally by cocoa to release objects (ie in the implementation of -release).

EXC_BAD_ACCESS Problem

I've been running into an EXC_BAD_ACCESS bug and have been racking my brain trying to figure out the solution. I believe I know the issue but I can't narrow down the line that it's happening on and the debug log isn't helping me. I've embedded the crash log below. If anybody could help me figure out how to track things down I'd be extremely grateful! I have turned on NSZombieEnabled but that is not giving me any additional information.
text is better than a screenshot, but I think I can read that screen.
the crash is in your code at 0x1000. You'll want to sybolicate that: Symbolicating iPhone App Crash Reports
the frames in libobjc are most likely because you are passing a bogus pointer to objc_msgSend(); something that looks enough like a pointer that objc tries to poke at the garbage value is if it were an object.
this isn't necessary an over-release problem; could just be a trashed pointer / trashed memory.
You can probably disassemble the binary and figure out what symbols is that the address listed. Or something pretty close. otool is your friend. nm might be, too. But... proper symbolication is far superior.
while debugging set NZombieEnabled.It will helf you hunt down the probem.atleast why its crashing(on which object).

Random Crashing and weird console output

I wrote an entire app, and I was just about to submit it to the app store, and in my final testing, I went back and added a few releases to ensure proper memory management was observed. And since then, I keep getting these random crashes. I've tried removing some or all of the release calls, I've tried retaining objects. I cleaned the project. I used NSZombieEnabled and that also is not helping. All this to not avail.
Most of the time, the console says provides no help. Usually the app loads, I put NSLogs in viewDidLoad, viewDidAppear, and viewWillAppear, and they all show up in the console, then it crashes.
Sometimes I also get EXC_BAD_ACCESS (and I know what that means). But its occurring randomly. So this doesn't make sense to me. Thanks for any help possible. I've written this whole app, and spent months on it. So I'm really stuck. Thank you.
Have you tried Build --> Analyze? It will search your code for leaks and other useful things you might have missed. Try that and see if it finds anything for you.
I agree with Rudy. It sounds like you're releasing something that is still in use. I would go back to the version that was working and start adding the releases one at a time til it causes the crash. Slow but effective debugging.
When you say that you "sometimes" get EXC_BAD_ACCESS, what do you get the rest of the time? Where does the crash stack indicate you're crashing? What messages do you get?
Random crashes usually indicate a timing problem. A common cause is accessing things on multiple threads. Are you? It can also mean timing differences based on network traffic.
Make sure the console doesn't indicate an exception rather than a memory violation. Usually there's something in the console that will be useful.