@ coba - tangkap blok di Objective-C
Mengapa @try coba blokir tidak berfungsi? Itu crash aplikasi, tapi itu seharusnya ditangkap oleh blok @try. NSString* test = [NSString stringWithString:@"ss"]; @try { [test characterAtIndex:6]; } @catch (NSException * e) { NSLog(@"Exception: %@", e); } @finally { NSLog(@"finally");...