OC高效率52之编写“异常安全代码”时留意内存管理问题

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    
//    -fobjc-arc-exceptions 开启ARC下安全处理异常所用附加代码,不过会导致应用程序变大,而且会降低运行效率
//    @try {
//        
//    }
//    @catch (NSException *exception) {
//        <#Handle an exception thrown in the @try block#>
//    }
//    @finally {
//        <#Code that gets executed whether or not an exception is thrown#>
//    }
    
    //发现大量异常捕获操作时,应考虑重构代码。
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end


你可能感兴趣的:(OC高效率52之编写“异常安全代码”时留意内存管理问题)