UITableView

/*

1.TableView的父类是UIScrollView,但是UITableView只能上下滚动,UITableView通过UITableViewCell展示数据,UITableViewCell上有一个contentView,contentView上有一个titleLabel , detailTitleLabel , imageView , accessoryView(辅助视图),且UITableView可以进入编辑模式,能够进行增删改

2。UITableView可以有0个或多个分区,分区是根据分区的下标来区分,每个分区可以有多条(rows)cell,cell也是根据所在分区中的下标来区分

3. UITableView有两种样式plain 和 grouped,而且一旦确定下来就很难更改

4. UITableView很多方法都和NSIndexPath对象有关,要么作为方法的参数要么作为方法的返回值

*/

import UIKit

//获取屏幕的宽和高

let kScreenWidth = UIScreen.main.bounds.width

let kScreenheight = UIScreen.main.bounds.height

class ViewController: UIViewController,UITableViewDataSource {

//定义一个 TableView的属性

var tableView:UITableView!

// 重写lodeview方法,修改视图控制器自带的view,将tableView作为视图控制器的view

override func loadView() {

//创建UITableView对象

self.tableView = UITableView(frame: UIScreen.main.bounds, style: .grouped)

self.view = tableView

}

override func viewDidLoad() {

super.viewDidLoad()

//配置tableView的常用属性

// rowHeight行高

tableView.rowHeight = 100

//separatorStyle 分割线样式

tableView.separatorStyle = .singleLine

//分割线内边距

tableView.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)

//分割线的颜色

tableView.separatorColor = #colorLiteral(red: 0.9372549057, green: 0.3490196168, blue: 0.1921568662, alpha: 1)

//tableHeaderView 表头视图,经常用来放置轮播图

let headerView = UIView(frame: CGRect(x: 0, y: 0, width: kScreenWidth, height: 150))

headerView.backgroundColor = #colorLiteral(red: 0.5843137503, green: 0.8235294223, blue: 0.4196078479, alpha: 1)

tableView.tableHeaderView = headerView

//tableFooterView 表尾视图,经常用来收起多余的cell

//        let footerView = UIView(frame: CGRect(x: 0, y: 0, width: kScreenWidth, height: 20))

//        footerView.backgroundColor = #colorLiteral(red: 1, green: 0.7192476913, blue: 0.7031846319, alpha: 1)

//        tableView.tableFooterView = footerView

//快速收起多余的cell

tableView.tableFooterView = UIView()

//tableview的重要属性 dataSourse,数据源代理,专门负责tableView有多少个分区,每个分区有多少条cell 以及返回UITableViewCell控件

tableView.dataSource = self

}

//MARK:- UITableViewDataSource协议中的方法

//返回每个分区中cell的个数

//section储存的是分区的下标

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int{

return (section % 2 == 0) ? 1 : 3

}

//返回tableViewCell的方法

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell{

//创建cell对象

//参数1:cell的样式  参数2:重用标识

let cell = UITableViewCell(style: .value2, reuseIdentifier: nil)

//cell 上有一个contentView,contentView,上有textLabel,detaiTextLabel,imageView

cell.textLabel?.text = "textLabel"

cell.detailTextLabel?.text = "detailTextLabel"

cell.imageView?.image = #imageLiteral(resourceName: "poto.png")

//系统提供的accessoryView样式

// cell.accessoryType = .disclosureIndicator

//赋值UIControl子类作为辅助视图

// cell.accessoryView = UISwitch()

//自定义视图作为辅助视图

let accView = UIView(frame: CGRect(x: 0, y: 0, width: 40, height: 40))

accView.backgroundColor = #colorLiteral(red: 0.4745098054, green: 0.8392156959, blue: 0.9764705896, alpha: 1)

cell.accessoryView = accView

//以后如果我们要自定义cell,也要把自定义的控件添加到contentView上

return cell

}

//返回tableView中有多少个分区,默认不设置这个方法,有一个分区,但分区下标是0

func numberOfSections(in tableView: UITableView) -> Int{

return 5

}

//返回区头的标题

//section 存储的也是分区的下标

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {

return "区头标题\(section)"

}

//返回区尾的标题

func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {

return "区尾标题\(section)"

}

//返回右边侧边栏索引的方法

func sectionIndexTitles(for tableView: UITableView) -> [String]? {

return ["0","1","2","3","4"]

}

override func didReceiveMemoryWarning() {

super.didReceiveMemoryWarning()

// Dispose of any resources that can be recreated.

}

}

你可能感兴趣的:(UITableView)