Hi,
Why @try block do not work? It crash the app, but it was supposed to be catch by the @try block
NSString* test = [NSString stringWithString:@"ss"];
@try {
[test characterAtIndex:6];
}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
@finally {
NSLog(@"finally");
}
Thanks, Alex.