Sha256: 4cf9051a2b134d6289b1eb4fb0432d81ed1a4c98cc38b9358261911118e54c2d
Contents?: true
Size: 533 Bytes
Versions: 9
Compression:
Stored size: 533 Bytes
Contents
class AppDelegate def application(application, didFinishLaunchingWithOptions:launchOptions) rootViewController = UIViewController.alloc.init rootViewController.title = 'testios' rootViewController.view.backgroundColor = UIColor.whiteColor navigationController = UINavigationController.alloc.initWithRootViewController(rootViewController) @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) @window.rootViewController = navigationController @window.makeKeyAndVisible true end end
Version data entries
9 entries across 9 versions & 1 rubygems