本文詳細介紹了表視圖的用法。具體如下:
概述
表視圖組成
表視圖是iOS開發中最重要的視圖,它以列表的形式展示資料。表視圖又一下部分組成:
表視圖的相關類
UITableView繼承自UIScrollView,且有兩個協議:UITableViewDelegate和UITableViewDataSource。此外UITableViewCell類時儲存格類,UITableViewController類時UITableView的控制器,UITableViewHeaderFooterView用於為節頭和節腳提供視圖。
表視圖分類
- 普通表視圖:主要用於動態表,而動態表一般在儲存格數目未知的情況下使用
- 分組表視圖:一般用於靜態表,用來進行介面布局
儲存格的組成和樣式
儲存格由表徵圖、主標題、副標題、擴充視圖組成,可以根據需要進行選擇,其中內建的擴充視圖在枚舉類型
Swift枚舉成員 |
Objective-C枚舉成員 |
說明 |
none |
ITableViewCellAccessoryNone |
沒有擴充表徵圖 |
disclosureIndicator |
UITableViewCellAccessoryDisclosureIndicator |
擴充指標,為箭頭+問號 |
detailDisclosureButton |
UITableViewCellAccessoryDetailDisclosureButton |
細節展示圖,為問號 |
checkmark |
UITableViewCellAccessoryCheckmark |
選中標誌,表徵圖為勾 |
detailButton |
UITableViewCellAccessoryDetailButton |
細節詳情展示,表徵圖為問號 |
內建的儲存格樣式在枚舉類型UITableViewCellStyle中定義:
Swift枚舉成員 |
Objective-C枚舉成員 |
說明 |
default |
UITableViewCellStyleDefault |
預設樣式 |
subtitle |
UITableViewCellStyleSubtitle |
有表徵圖、主標題、副標題、副標題在主標題的下面 |
value1 |
UITableViewCellStyleValue1 |
有主標題、副標題,主標題靠左對齊、副標題靠右對齊,可以有表徵圖 |
2alue3 |
UITableViewCellStyleValue2 |
有主標題、副標題,主標題和副標題置中對齊,無表徵圖 |
資料來源協議與委託協議
UITableViewDataSource
資料來源協議主要為表視圖提供資料,主要方法如下
方法 |
傳回型別 |
說明 |
func tableView(UITableView, cellForRowAt: IndexPath) |
UITableViewCell |
為表視圖儲存格提供資料,必須實現 |
tableView(UITableView, numberOfRowsInSection: Int) |
Int |
返回某個節中的行數,必須實現 |
tableView(UITableView, titleForHeaderInSection: Int) |
String |
返回節頭的標題 |
tableView(UITableView, titleForFooterInSection: Int) |
String |
返回節腳的標題 |
numberOfSections(in: UITableView) |
Int |
返回節的個數 |
sectionIndexTitles(for: UITableView) |
[String]? |
返回表示圖節索引標題 |
UITableViewDelegate
委託協議主要主要用來設定表視圖中節頭和節腳的標題,以及一些動作事件,主要方法如下
方法 |
傳回型別 |
說明 |
tableView(UITableView, didSelectRowAt: IndexPath) |
|
儲存格響應事件 |
tableView(UITableView, accessoryButtonTappedForRowWith: IndexPath) |
|
擴充視圖響應事件 |
簡單表視圖
UIViewController根視圖控制器實現表視圖
步驟
- 建立一個iOS工程
- 從物件程式庫中拖入一個TableView到storyboard檔案中,並將TableView覆蓋整個View
- 開啟Table View的屬性偵測器,將PrototypeCells的值設為1,注意不要添加多個,否則會發生錯誤;此時Table View會添加一個Table View Cell。
- 開啟Table View Cell的屬性偵測器,設定Identifier屬性。
- 註冊UITableViewDataSource和UITableViewDelegate協議
- 編寫代碼實現功能
實現
//// ViewController.swift// TableViewDemo//// Created by Michael on 2016/10/26.// Copyright © 2016年 Michael. All rights reserved.//import UIKitclass ViewController: UIViewController,UITableViewDataSource,UITableViewDelegate { //全部資料 var listItems: NSArray! override func viewDidLoad() { super.viewDidLoad() //讀取資源檔資料 let listPath = Bundle.main.path(forResource: "team", ofType: "plist") self.listItems = NSArray(contentsOfFile: listPath!) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } //返回列表每行的視圖 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { //根據Identifier找到Cell let cell = tableView.dequeueReusableCell(withIdentifier: "CustomId", for: indexPath) let row = indexPath.row let rowDict = self.listItems[row] as! NSDictionary cell.textLabel?.text = rowDict["name"] as? String cell.detailTextLabel?.text = "123" let imagePath = String(format: "%@.png", rowDict["image"] as! String) cell.imageView?.image = UIImage(named: imagePath) cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator return cell } //返回條目數目 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.listItems.count } //響應條目點擊事件 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { print("點擊事件") } }
樣本圖
none模式
disclosureIndicator
UITableViewController根視圖控制器實現表視圖
步驟
- 建立一個iOS工程
- 刪除storyboard中View Controller Scene 中的View Controller,再從物件程式庫拖入一個Table View Controller到設計介面
- 開啟Table View Controller屬性偵測器,勾選Is Initial View Controller選項,否則應用啟動後是黑屏
- 將ViewController類的父類由UIViewController改為UITableViewController
- 開啟View Controller的屬性選取器在Class列表中選擇ViewController
- UITableViewController預設以註冊UITableViewDataSource和UITableViewDelegate協議,不需要再註冊
實現
import UIKitclass ViewController: UITableViewController { //全部資料 var listItems: NSArray! override func viewDidLoad() { super.viewDidLoad() //讀取資源檔資料 let listPath = Bundle.main.path(forResource: "team", ofType: "plist") self.listItems = NSArray(contentsOfFile: listPath!) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } //返回列表每行的視圖 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { let cell = tableView.dequeueReusableCell(withIdentifier: "CustomId", for: indexPath) let row = indexPath.row let rowDict = self.listItems[row] as! NSDictionary cell.textLabel?.text = rowDict["name"] as? String cell.detailTextLabel?.text = "123" let imagePath = String(format: "%@.png", rowDict["image"] as! String) cell.imageView?.image = UIImage(named: imagePath) cell.accessoryType = UITableViewCellAccessoryType.disclosureIndicator return cell } //返回條目數目 func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.listItems.count } //響應條目點擊事件 func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { print("點擊事件") } }
樣本圖
detailButton模式
checkmark模式
自訂儲存格
步驟
- 建立一個表視圖工程
- 修改根視圖控制器為表視圖控制器UITableViewController,參照上節的步驟
- 從物件程式庫中拖入控制項到儲存格內部,比如Lable和ImageView
- 建立自訂儲存格類CustomCell檔案,並繼承UITableViewCell類
- 在設計介面中選擇View Controller Scene中的Table View Cell,並開啟屬性偵測器,將Class設為CustomCell類,並設定儲存格的Identifier
- 為儲存格中的控制項Label和ImageView控制項串連輸出介面,將控制項綁定到CustomCell類中
- 開啟ViewController類,編寫代碼實現
實現
CustomCell類
//// CustomCell.swift// CustomCell//// Created by Michael on 2016/10/25.// Copyright © 2016年 Michael. All rights reserved.//import UIKitclass CustomCell: UITableViewCell { @IBOutlet weak var mImage: UIImageView! @IBOutlet weak var mLabel: UILabel! override func awakeFromNib() { super.awakeFromNib() // Initialization code } override func setSelected(_ selected: Bool, animated: Bool) { super.setSelected(selected, animated: animated) // Configure the view for the selected state }}
ViewController類
//// ViewController.swift// SimpleTableView//// Created by Michael on 2016/10/24.// Copyright © 2016年 Michael. All rights reserved.//import UIKitclass ViewController: UITableViewController { var listItems: NSArray! override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. let listPath = Bundle.main.path(forResource: "team", ofType: "plist") self.listItems = NSArray(contentsOfFile: listPath!) } override func didReceiveMemoryWarning() { super.didReceiveMemoryWarning() // Dispose of any resources that can be recreated. } override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { return self.listItems.count } override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { //找到自訂儲存格 let cell:CustomCell! = tableView.dequeueReusableCell(withIdentifier: "CustomCellId", for: indexPath) as? CustomCell //let cell = UITableViewCell(style: .value1, reuseIdentifier: "CellIdentifier") let row = indexPath.row let rowDict = self.listItems[row] as! NSDictionary //設定控制項屬性 cell.mLabel.text = rowDict["name"] as? String let imagePath = String(format: "%@.png", rowDict["image"] as! String) cell.mImage.image = UIImage(named: imagePath) cell.accessoryType = .disclosureIndicator return cell }}
樣本圖
以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。