Created
February 7, 2017 12:47
-
-
Save Bodacious/9ecf59100e5095368f12407b58290fce to your computer and use it in GitHub Desktop.
Empty app delegate
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 | |
def window | |
@window ||= UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) | |
end | |
def application(application, didFinishLaunchingWithOptions:launchOptions) | |
window.rootViewController = UIViewController.alloc.init | |
window.makeKeyAndVisible | |
true | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment