码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2015-09-26 18:34:16      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

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

效果图如下:
技术分享

实现步骤:
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 = "添加任务"
        //去除尾部多余的空行
        self.tableView.tableFooterView = UIView(frame:CGRectZero)
    }
 
    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
    }
 
    override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return 2
    }
 
    override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        if section == 0 {
            return 1
        }else{
            return 2
        }      
    }
 
}

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

标签:

原文地址:http://www.cnblogs.com/Free-Thinker/p/4841085.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!