We are writing static library. We have done exception handling for the exposed APIs. But still there are few un-handled Exceptions (or OS Exceptions). Can you please let me know
Simple -
@try { //your code } @catch (NSException *theException) { NSLog(@"Exception: %@", theException); }
Happy coding ...