Skip to content

Instantly share code, notes, and snippets.

View aschmitt's full-sized avatar

Andreas Schmitt aschmitt

  • AutoScout24 GmbH
View GitHub Profile
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Initialize the window
window = UIWindow.init(frame: UIScreen.mainScreen().bounds)
// Set Background Color of window
window?.backgroundColor = UIColor.whiteColor()
// Allocate memory for an instance of the 'MainViewController' class
let mainViewController = MainViewController()