(二)swift TabbedApplication 内增加普通视图

前端之家收集整理的这篇文章主要介绍了(二)swift TabbedApplication 内增加普通视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Tab Bar Controller 新增一个 Item (UIViewController)

单击选择 Main.storyboard ,Xcode 右下角 输入“UIviewController” 拖拽 第一个选项,放置于中央编辑区域。


Control+鼠标左键 建立Relationship ,弹出框内,选择 Relationship Segue -> view controllers

为这个新建UIviewController 建立一个controller

1、Myoa 右键 –> New File… -

2、弹出窗口 IOS -> Source ->右侧选择 Swift File

Save As: 填入ThirdViewController,然后点击Create

import UIKit
class ThirdViewController: UIViewController {

override func viewDidLoad() {
    super.viewDidLoad()
    print("Third")
}    
override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()

}
}

3、选择 Main.storyboard,选择新建的 Item
在右侧Class处选择 ThirdViewController
Module选择“CompanyOA”

4、项目运行

单击左上角启动按钮,项目启动后,点击项目的第三项。

底部All Output窗口输出:”Third”

原文链接:/swift/325297.html

猜你在找的Swift相关文章