Marvin Nazari a9a3e8e40c [IGListKit] Search example (#3047)
* Search example with IGListKit

* Cleanup

* updated to use new class methods [ASIGListSectionControllerMethods]
2017-02-27 12:52:48 -08:00

28 lines
797 B
Swift

//
// AppDelegate.swift
// RepoSearcher
//
// Created by Marvin Nazari on 2017-02-18.
// Copyright © 2017 Marvin Nazari. All rights reserved.
//
import UIKit
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow? = {
let window = UIWindow(frame: UIScreen.main.bounds)
window.backgroundColor = .white
return window
}()
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
window?.rootViewController = UINavigationController(rootViewController: SearchViewController())
window?.makeKeyAndVisible()
return true
}
}