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

原帖:http://www.hangge.com/blog/cache/detail_724.html该网站还有很多实用的swift文章

通过使用静态单元格的列表,我们可以很方便的进行页面布局。下面通过一个添加任务页面”来进行演示。


效果图如下:

实现步骤:
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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
class MyTableViewController : UITableViewController {
override func viewDidLoad() {
super .viewDidLoad()
self .title = "添加任务"
//去除尾部多余的空行
.tableView.tableFooterView = UIView (frame: CGRectZero )
}
didReceiveMemoryWarning() {
.didReceiveMemoryWarning()
}
numberOfSectionsInTableView(tableView: UITableView ) -> Int {
return 2
}
tableView(tableView: ,numberOfRowsInSection section: {
if section == 0 {
1
} else {
2
}
}
}

相关文章

软件简介:蓝湖辅助工具,减少移动端开发中控件属性的复制和粘...
现实生活中,我们听到的声音都是时间连续的,我们称为这种信...
前言最近在B站上看到一个漂亮的仙女姐姐跳舞视频,循环看了亿...
【Android App】实战项目之仿抖音的短视频分享App(附源码和...
前言这一篇博客应该是我花时间最多的一次了,从2022年1月底至...
因为我既对接过session、cookie,也对接过JWT,今年因为工作...