Pourquoi le bloc @try ne fonctionne-t-il pas? L'application s'est bloquée, mais elle était censée être prise par le bloc @try.
NSString* test = [NSString stringWithString:@"ss"];
@try {
[test characterAtIndex:6];
}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
@finally {
NSLog(@"finally");
}