¿Por qué @try no bloquea el trabajo? Se bloqueó la aplicación, pero se suponía que debía ser atrapada por el bloque @try.
NSString* test = [NSString stringWithString:@"ss"];
@try {
[test characterAtIndex:6];
}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
@finally {
NSLog(@"finally");
}