Le try{}catch
la construction est commune à C++, Java et langages associés. Dans le SDK iOS, y a-t-il des fonctionnalités comme celle-ci?
@try {
// Try something
}
@catch (NSException * e) {
NSLog(@"Exception: %@", e);
}
@finally {
// Added to show finally works as well
}