首页 > 代码库 > ios配置启动后的第一个页面
ios配置启动后的第一个页面
在AppDelegate.swift中配置ViewController.swift为启动后的第一个页面
import UIKit @UIApplicationMain class AppDelegate: UIResponder, UIApplicationDelegate { var window: UIWindow? func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { // 启动后的第一个页面 self.window = UIWindow(frame: UIScreen.mainScreen().bounds); // 这里设置rootViewController为ViewController实例 let vc = ViewController(); self.window?.rootViewController = vc;//本行vc处填写你要选择的页面 self.window?.backgroundColor = .whiteColor(); self.window?.makeKeyAndVisible(); return true; }
在ViewController.swift中简单写一下背景色
import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. self.view.backgroundColor = .yellowColor();//背景色的设置 } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } }
选择相应【TARGETS】,选择【General】,找到如下两个配置项,并清空内容。
删除Main.storyboard和LaunchScreen.storyboard文件。
然后运行就出现了黄色的页面
ios配置启动后的第一个页面
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。