3
@try-Objective-C中的catch块
为什么@try块不起作用?它使应用程序崩溃,但是应该被@try块捕获了。 NSString* test = [NSString stringWithString:@"ss"]; @try { [test characterAtIndex:6]; } @catch (NSException * e) { NSLog(@"Exception: %@", e); } @finally { NSLog(@"finally"); }