从appdelegate 启动App

        self.window = UIWindow(frame: UIScreen.main.bounds)
        self.window?.backgroundColor = UIColor.white
        self.window?.rootViewController =  ChangeFontController()
        self.window?.makeKeyAndVisible()

你可能感兴趣的:(从appdelegate 启动App)