swift Swift UITabBar以编程方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift Swift UITabBar以编程方式相关的知识,希望对你有一定的参考价值。
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: NSDictionary?) -> Bool {
// Override point for customization after application launch.
self.window = UIWindow(frame: UIScreen.mainScreen().bounds)
var nav1 = UINavigationController()
var first = FirstViewController(nibName: nil, bundle: nil)
nav1.viewControllers = [first]
var second = SecondViewController(nibName: nil, bundle: nil)
var nav2 = UINavigationController()
nav2.viewControllers = [second]
var tabs = UITabBarController()
tabs.viewControllers = [nav1, nav2]
self.window!.rootViewController = tabs;
self.window?.makeKeyAndVisible();
return true
}
以上是关于swift Swift UITabBar以编程方式的主要内容,如果未能解决你的问题,请参考以下文章
Swift中自定义uitabbar溢出项的TableViewController
AppDelegate 中的 Swift UITabbar 阴影
使用 swift 以编程方式 UITableView
如何使用 Swift 以编程方式创建 UILabel?
Swift 3 - 以编程方式创建标题栏约束
swift Swift - 以编程方式添加导航栏标题和按钮