Programming/Swift

프로젝트 xib로 시작하기.

ilovecoffee 2015. 11. 11. 14:56
@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
    var window: UIWindow?

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {

        window = UIWindow(frame: UIScreen.mainScreen().bounds)

        var mainViewController = ViewController(nibName: "ViewController", bundle: nil)

        window?.rootViewController = mainViewController
        window?.makeKeyAndVisible()
        return true
    }

    ...
}


다음과 같이 AppDelegate.swift파일에 넣어주면 된다.

'Programming > Swift' 카테고리의 다른 글

배열과 인덱스의 딕셔너리의 키에 대한 접근 차이  (0) 2015.11.29
집합 연산  (0) 2015.11.29
ios 시간 단위 표현해주기.  (0) 2015.09.15
[2] APNS와 인증서 발급 방법  (0) 2015.09.08
[1] SWIFT? 뭘까?  (0) 2015.09.07