3
@try - cattura il blocco in Objective-C
Perché il blocco @try non funziona? Ha bloccato l'app, ma doveva essere catturato dal blocco @try. NSString* test = [NSString stringWithString:@"ss"]; @try { [test characterAtIndex:6]; } @catch (NSException * e) { NSLog(@"Exception: %@", e); } @finally { NSLog(@"finally"); }