Perché il blocco @try non funziona? Arresto anomalo dell'app, ma doveva essere catturato dal blocco @try.@try - blocco catch in Objective-c
NSString* test = [NSString stringWithString:@"ss"];
@try {
[test characterAtIndex:6];
}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
@finally {
NSLog(@"finally");
}
È possibile sostituire NSString * test = [NSString stringWithString: @ "ss"]; con NSString * test = @ "ss"; –