3
@try - блок лову в Objective-C
Чому блок @try не працює? Це збійло додаток, але його, мабуть, схопив блок @try. NSString* test = [NSString stringWithString:@"ss"]; @try { [test characterAtIndex:6]; } @catch (NSException * e) { NSLog(@"Exception: %@", e); } @finally { NSLog(@"finally"); }