Sha256: 1c56ffc56e6bda0f09de1a1b624e698e6019476e952b5f634752e3dc8b75cd87

Contents?: true

Size: 888 Bytes

Versions: 17

Compression:

Stored size: 888 Bytes

Contents

//
//  AppDelegate.swift
//  YKRPC_POD_NAME_Example
//
//  Created by YKRPC_AUTHOR_NAME on YKRPC_CREATE_DATE.
//

import UIKit

@main
class AppDelegate: UIResponder, UIApplicationDelegate {
    var window: UIWindow?
    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
        let win = UIWindow.init(frame: UIScreen.main.bounds)
        win.backgroundColor = UIColor.white
        self.window = win
        
        
        let tab = UITabBarController()
        var arr: [UIViewController] = [UIViewController]()
        do{
            let nav = UINavigationController.init(rootViewController: ViewController())
            arr.append(nav)
        }
        
        tab.viewControllers = arr
        win.rootViewController = tab
        win.makeKeyAndVisible()
        return true
    }
}

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
cocoapods-ykutility-3.0.4 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-3.0.3 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-3.0.2 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-3.0.1 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-3.0.0 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.9 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.8 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.7 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.6 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.5 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.4 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.3 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.2 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.1 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-2.0.0 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-1.0.2 configPodTemplate/example/TargetMain/AppDelegate.swift
cocoapods-ykutility-1.0.1 configPodTemplate/example/TargetMain/AppDelegate.swift