try标准代码块

#import

#import "Fraction.h"

 

int main(int argc, const char * argv[]) {

    @autoreleasepool {

        // insert code here...

        Fraction *f = [[Fraction alloc] init];

        @try {

            [f print];

        } @catch (NSException *exception) {

            NSLog(@"Caught %@%@",[exception name],[exception reason]);

        } @finally {

            NSLog(@"Execution continues!");

        }

        

    }

    return 0;

}

你可能感兴趣的:(ios,objective-c,swift,xcode)