Created
March 4, 2016 10:34
-
-
Save danielmorrisdesign/4cbe8cd6c8a962364984 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AppDelegate: UIResponder, UIApplicationDelegate { | |
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { | |
if NSProcessInfo.processInfo().environment[“animations”] == “0” { | |
UIView.setAnimationsEnabled(false) | |
} | |
... | |
return true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment