What is the call stack on EXC_BAD_ACCESS?
Also, you can just use NSString to get a formatted string, no need to use NSMutableString or cast it...
Brian
2010-04-28 21:13:07
What is the call stack on EXC_BAD_ACCESS?
Also, you can just use NSString to get a formatted string, no need to use NSMutableString or cast it...
I think you want to put in a symbolic breakpoint for "objc_exception_throw" so you can see what happens before the crash. Just go to the Run menu -> Manage Breakpoints -> Add Symbolic Breakpoint, and type in objc_exception_throw.
BTW, you are probably calling an object which is already deleted.