Why doesn\'t @try block work? It crashed the app, but it was supposed to be caught by the @try block.
NSString* test = [NSString stringWithString:@\"ss\"];
Now I've found the problem.
Removing the obj_exception_throw from my breakpoints solved this. Now it's caught by the @try block and also, NSSetUncaughtExceptionHandler will handle this if a @try block is missing.
obj_exception_throw
@try
NSSetUncaughtExceptionHandler