iOS開發之表視圖詳解_IOS

來源:互聯網
上載者:User

本文詳細介紹了表視圖的用法。具體如下:

概述

表視圖組成

表視圖是iOS開發中最重要的視圖,它以列表的形式展示資料。表視圖又一下部分組成:

  • 表頭視圖:表視圖最上邊的視圖

  • 表腳視圖:表視圖最下邊的視圖

  • 儲存格(cell):表視圖中每一行的視圖

  • 節(section):由多個儲存格組成,應用於分組列表

    • 節頭

    • 節腳

表視圖的相關類

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根視圖控制器實現表視圖

步驟

  1. 建立一個iOS工程
  2. 從物件程式庫中拖入一個TableView到storyboard檔案中,並將TableView覆蓋整個View
  3. 開啟Table View的屬性偵測器,將PrototypeCells的值設為1,注意不要添加多個,否則會發生錯誤;此時Table View會添加一個Table View Cell。
  4. 開啟Table View Cell的屬性偵測器,設定Identifier屬性。
  5. 註冊UITableViewDataSource和UITableViewDelegate協議
  6. 編寫代碼實現功能

實現

//// 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根視圖控制器實現表視圖
步驟

  1. 建立一個iOS工程
  2. 刪除storyboard中View Controller Scene 中的View Controller,再從物件程式庫拖入一個Table View Controller到設計介面
  3. 開啟Table View Controller屬性偵測器,勾選Is Initial View Controller選項,否則應用啟動後是黑屏
  4. 將ViewController類的父類由UIViewController改為UITableViewController
  5. 開啟View Controller的屬性選取器在Class列表中選擇ViewController
  6. 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模式

自訂儲存格

步驟

  1. 建立一個表視圖工程
  2. 修改根視圖控制器為表視圖控制器UITableViewController,參照上節的步驟
  3. 從物件程式庫中拖入控制項到儲存格內部,比如Lable和ImageView
  4. 建立自訂儲存格類CustomCell檔案,並繼承UITableViewCell類
  5. 在設計介面中選擇View Controller Scene中的Table View Cell,並開啟屬性偵測器,將Class設為CustomCell類,並設定儲存格的Identifier
  6. 為儲存格中的控制項Label和ImageView控制項串連輸出介面,將控制項綁定到CustomCell類中
  7. 開啟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   }}

樣本圖

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.