Browsing articles from "February, 2012"
iPhone – Get Symbols for Call Stack
OK, so it is more a work around than a solution. It worked for me and but it has saved me a lot of time. Simply implement your own exception handler! This will give you the full stack trace and straight away tell you where a SIGABRT is occurring.
Add the following code to your app:
In AppDelegate:
void exceptionHandler(NSException*exception){ NSLog(@"Exception Description: %@", exception); NSLog(@"Stack Trace: %@",[exception callStackSymbols]); }
Then indidFinishLaunchingWithOptions, add:
NSSetUncaughtExceptionHandler(&exceptionHandler);
Blog Categories
Recent Posts
Recent Comments
- Steve on How to set the Navigation Bar Style.
- Clay on Good UISegmentedControl example
- Junior on Printf Formatting
- Kasey on Symbian Error Codes
- Dong on UITableView Separator colour


