2015年8月25日 星期二

[iOS]Xcode 6 Disable ARC 設定

Disable ARC 
Build Settings  -> Search Automatic Reference Counting ->  NO


Disable ARC on single files
Build phases -> compile sources double click on the file and enter:
-fno-objc-arc 


[iOS]退出App動畫

Objective-C:         UIWindow *window = [UIApplication sharedApplication].delegate.window;         [UIView animateWi...