Swift - 使用TableView的静态单元格进行页面布局

前端之家收集整理的这篇文章主要介绍了Swift - 使用TableView的静态单元格进行页面布局前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
通过使用静态单元格的列表,我们可以很方便的进行页面布局。下面通过一个“添加任务页面”来进行演示。

效果图如下:

实现步骤:
1,在storyboard中拖入一个TableViewController,同时创建一个对应的类(MyTabelViewController.swift)进行绑定。
2,选择表格,在属性面板中设置Content为Static Cells,Sections设置为2
3,选中第1个Sections,将Rows设置为1,并拖入一个TextFiled到单元格中
4,选中第2个 Sections,将Rows设置为2,分别给两个单元格拖入对应的Label和Switch等控件
5,MyTabelViewController.swift
@H_502_42@class MyTableViewController : UITableViewController {
override func viewDidLoad() {
super .viewDidLoad()
self .title = "添加任务"
//去除尾部多余的空行
.tableView.tableFooterView = UIView (frame: CGRectZero )
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}

/**
其实在该demo中,如下2个代理方法不用书写的
如果在故事版中是单独的没有与其他控制器有关联的控制器的初始化需要使用如下方法

let controller:TableController = UIStoryboard.init(name:"Main",bundle: NSBundle.mainBundle()).instantiateViewControllerWithIdentifier("TableController") as! TableController;

self.presentViewController(controller,animated: true,completion: nil);

*/
numberOfSectionsInTableView(tableView: UITableView ) -> Int {
return 2
}
tableView(tableView: ,numberOfRowsInSection section: {
if section == 0 {
1
} else {
2
}
}
}
原文链接:https://www.f2er.com/swift/324511.html

猜你在找的Swift相关文章