UITableView

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource
UITableView
let tableView = UITableView.init(frame: CGRect(origin: CGPoint.init(x: 0, y: 0), size: CGSize.init(width: SCREEN_WIDTH, height: SCREEN_HEIGHT)), style: .plain)
    
tableView.delegate = self
    
tableView.dataSource = self
    
tableView.tableFooterView = UIView.init()
    
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "mycell")

self.view.addSubview(tableView)
UITableViewDelegate
// Cell 内容
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    
    var  cell = tableView.dequeueReusableCell(withIdentifier: "mycell")
    
    if cell == nil {
        
        cell = UITableViewCell(style: .default, reuseIdentifier: "mycell")
    }
    
    cell?.textLabel?.text = dataSource[indexPath.row]
    
    return cell!
}

// 自定义 头视图
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    
    let headerView = UIView.init(frame: CGRect(x: 0, y: 0, width: SCREEN_WIDTH, height: 44))
    
    headerView.backgroundColor = UIColor.red
    
    return headerView
}

// 自定义 尾视图
func tableView(_ tableView: UITableView, viewForFooterInSection section: Int) -> UIView? {
    
    let footerView = UIView.init(frame: CGRect(x: 0, y: 0, width: SCREEN_WIDTH, height: 100))
    
    footerView.backgroundColor = UIColor.green
    
    return footerView
}

// cell 将要显示
func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
    
}

// cell 已经显示
func tableView(_ tableView: UITableView, didEndDisplaying cell: UITableViewCell, forRowAt indexPath: IndexPath) {
    
}

// header 将要显示
func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
    
}

// header 已经显示
func tableView(_ tableView: UITableView, didEndDisplayingHeaderView view: UIView, forSection section: Int) {
    
}

// footer 将要显示
func tableView(_ tableView: UITableView, willDisplayFooterView view: UIView, forSection section: Int) {
    
}

// footer 已经显示
func tableView(_ tableView: UITableView, didEndDisplayingFooterView view: UIView, forSection section: Int) {
    
}

// 设置cell 高
func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    
    return 44
}

// 设置cell 高的估计值
func tableView(_ tableView: UITableView, estimatedHeightForRowAt indexPath: IndexPath) -> CGFloat {
    
    return 100.0
}

// 设置header 高
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
    
    return 44.0
}

// 设置header 高的估计值
func tableView(_ tableView: UITableView, estimatedHeightForHeaderInSection section: Int) -> CGFloat {
    
    return 100.0
}

// 设置footer 高
func tableView(_ tableView: UITableView, heightForFooterInSection section: Int) -> CGFloat {
    
    return 44.0
}

// 设置footer 高的估计值
func tableView(_ tableView: UITableView, estimatedHeightForFooterInSection section: Int) -> CGFloat {
    
    return 100.0
}

// 设置cell 是否可以高亮
func tableView(_ tableView: UITableView, shouldHighlightRowAt indexPath: IndexPath) -> Bool {
    
    return true
}

// cell 高亮时调用
func tableView(_ tableView: UITableView, didHighlightRowAt indexPath: IndexPath) {
    
}

// cell 取消高亮时调用
func tableView(_ tableView: UITableView, didUnhighlightRowAt indexPath: IndexPath) {
    
}

// cell 将要选中
func tableView(_ tableView: UITableView, willSelectRowAt indexPath: IndexPath) -> IndexPath? {
    
    return indexPath
}

// cell 已经选中
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    
    tableView.deselectRow(at: indexPath, animated: true)
}

// cell 将要取消选中
func tableView(_ tableView: UITableView, willDeselectRowAt indexPath: IndexPath) -> IndexPath? {
    
    return indexPath
}

// cell 已经取消选中
func tableView(_ tableView: UITableView, didDeselectRowAt indexPath: IndexPath) {
    
}

// 设置被编辑时的样式(默认删除)
func tableView(_ tableView: UITableView, editingStyleForRowAt indexPath: IndexPath) -> UITableViewCellEditingStyle {
    
    return .delete
}

// 自定义删除按钮
func tableView(_ tableView: UITableView, titleForDeleteConfirmationButtonForRowAt indexPath: IndexPath) -> String? {
    
    return "一键删除"
}

// 设置编辑时按钮
func tableView(_ tableView: UITableView, editActionsForRowAt indexPath: IndexPath) -> [UITableViewRowAction]? {
    
    let action1 = UITableViewRowAction.init(style: .normal, title: "喜欢") { (action:UITableViewRowAction, indexPath:IndexPath) in
        
        //逻辑
    }
    
    let action2 = UITableViewRowAction.init(style: .normal, title: "不喜欢") { (action:UITableViewRowAction, indexPath:IndexPath) in
        
        //逻辑
    }
    
    return [action1, action2]
}

// 编辑时背景是否缩进
func tableView(_ tableView: UITableView, shouldIndentWhileEditingRowAt indexPath: IndexPath) -> Bool {
    
    return true
}

// 将要编辑
func tableView(_ tableView: UITableView, willBeginEditingRowAt indexPath: IndexPath) {
    
}

// 结束结束编辑
func tableView(_ tableView: UITableView, didEndEditingRowAt indexPath: IndexPath?) {
    
}

// 移动行
func tableView(_ tableView: UITableView, targetIndexPathForMoveFromRowAt sourceIndexPath: IndexPath, toProposedIndexPath proposedDestinationIndexPath: IndexPath) -> IndexPath {
    
    return proposedDestinationIndexPath
}
UITableViewDataSource
// 返回每个分组行数
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    
    return dataSource.count
}

// 返回分组数(默认为1)
func numberOfSections(in tableView: UITableView) -> Int {
    
    return 1
}

// 返回每个分区头部标题
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    
    return "头"
}

// 返回每个分区尾部标题
func tableView(_ tableView: UITableView, titleForFooterInSection section: Int) -> String? {
    
    return "尾"
}

// 行是否可编辑
func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {
    
    return true
}

// 编辑调用
func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath) {
    
}

// 行是否可移动
func tableView(_ tableView: UITableView, canMoveRowAt indexPath: IndexPath) -> Bool {
    
    return true
}

// 移动调用
func tableView(_ tableView: UITableView, moveRowAt sourceIndexPath: IndexPath, to destinationIndexPath: IndexPath) {
    
}

// 索引
func sectionIndexTitles(for tableView: UITableView) -> [String]? {
    
    return ["0","1","2","3","4","5","6","7","8","9"]
}

// 设置索引对应的分区
func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int {
    
    return 0
}

你可能感兴趣的:(UITableView)