淺談UITableView在Swift中的應(yīng)用與實(shí)現(xiàn)

在移動(dòng)端應(yīng)用中谭期,很多情況下我們需要頻繁與表格、列表這類的UI組件打交道兆旬,由于移動(dòng)端設(shè)備的屏幕較小姻采,所以在iOS上組織多條信息,UITableView成為了相當(dāng)?shù)昧Φ闹志粼鳎旅嫖覀兙烷_始討論一下UITableView在Swift中的實(shí)現(xiàn)

通過Xcode中的storyboard

Xcode中Swift開發(fā)者提供了很多便捷的工具慨亲,比如可以實(shí)現(xiàn)拖拽功能的storyboard,在storyboard中宝鼓,每一個(gè)視圖(view)都有一個(gè)對(duì)應(yīng)的controller進(jìn)行管理刑棵,因此我們接下來的大部分操作是基于storyboard的

創(chuàng)建List

  • 打開項(xiàng)目中的 storyboard, Main.storyboard
  • 打開 utility area 中的 Object library. (或者, 選擇 View > Utilities > Show Object Library.)

  • 在 Object library 中, 找到 Table View Controller 對(duì)象.

  • 從列表中拖拽出一個(gè) Table View Controller 對(duì)象, 并且將其放置在左側(cè)的scene中一個(gè)合適的位置上.

1.gif
  • 然后我們直接運(yùn)行項(xiàng)目,可以查看到表格的視圖已經(jīng)出現(xiàn)
  • image.png

自定義表格單元

  • 我們先創(chuàng)建一個(gè)自定義表格的控制器類愚铡,步驟如下

    1. 新建一個(gè)類
    2. 選擇iOS標(biāo)簽卡
    3. 選擇Cocoa Touch Class
    4. 選擇SubClass為 UITableViewCell
    5. 然后選擇語(yǔ)言為Swift
  • 然后我們?cè)趕toryboard中配置Table View中的Cell對(duì)應(yīng)到我們剛才創(chuàng)建的類


    image.png
  • 然后我們?nèi)匀煌ㄟ^上述的 utility area 中的對(duì)象在Cell中拖拽出如下的界面

  • image.png

將表格單元與Code關(guān)聯(lián)

  • image.png
  • 通過開發(fā)者視圖轉(zhuǎn)換的方式將XCode的界面調(diào)整成如上圖所示

  • 將上述Cell中各元素與上面我們創(chuàng)建的TableViewCell類形成一一對(duì)應(yīng)的關(guān)系

//UI中元素在TableViewCell類中的體現(xiàn)
@IBOutlet weak var nameLabel: UILabel!
@IBOutlet weak var photoImageView: UIImageView!
@IBOutlet weak var ratingControl: RatingControl!

加載數(shù)據(jù)

  • 先創(chuàng)建我們的實(shí)體對(duì)象類蛉签,存放的數(shù)據(jù)內(nèi)容對(duì)應(yīng)到一個(gè)Cell
class Meal {
    
    //MARK: Properties
    
    var name: String
    var photo: UIImage?
    var rating: Int
    
    init?(name: String, photo: UIImage?, rating: Int) {
    
      // The name must not be empty
      guard !name.isEmpty else {
          return nil
      }
    
      // The rating must be between 0 and 5 inclusively
      guard (rating >= 0) && (rating <= 5) else {
          return nil
      }
    
      // Initialize stored properties.
      self.name = name
      self.photo = photo
      self.rating = rating
    
  }
}
  • 然后我們創(chuàng)建一個(gè)UITableViewControllerMealTableViewController沥寥,我們需要在這個(gè)類里面填寫邏輯和處理數(shù)據(jù)碍舍,使數(shù)據(jù)與綁定的Table View對(duì)應(yīng)

  • 我們先定義存儲(chǔ)數(shù)據(jù)的對(duì)象 meals ,并定義初始化方法

var meals = [Meal]()
private func loadSampleMeals() {
    
    let photo1 = UIImage(named: "meal1")
    let photo2 = UIImage(named: "meal2")
    let photo3 = UIImage(named: "meal3")
    
    guard let meal1 = Meal(name: "Caprese Salad", photo: photo1, rating: 4) else {
        fatalError("Unable to instantiate meal1")
    }
    
    guard let meal2 = Meal(name: "Chicken and Potatoes", photo: photo2, rating: 5) else {
        fatalError("Unable to instantiate meal2")
    }
    
    guard let meal3 = Meal(name: "Pasta with Meatballs", photo: photo3, rating: 3) else {
        fatalError("Unable to instantiate meal2")
    }
    
    meals += [meal1, meal2, meal3]
}
  • 然后在TableViewController中重載父類方法 viewDidLoad() 邑雅,需要調(diào)用數(shù)據(jù)初始化方法
override func viewDidLoad() {
    super.viewDidLoad()    
    // Load the sample data.
    loadSampleMeals()
}

將數(shù)據(jù)與表格關(guān)聯(lián)

  • 接下來我們需要將定義好的TableViewController與UI中所需要的DataSource關(guān)聯(lián)起來
  • Table View展示元素所必需的幾個(gè)關(guān)于DataSource方法如下
func numberOfSections(in tableView: UITableView) -> Int
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
  • 重載的方法實(shí)現(xiàn)如下
//該方法返回的值代表了Table View需要呈現(xiàn)幾個(gè)sections
override func numberOfSections(in tableView: UITableView) -> Int {
    return 1
}
//該方法返回值代表了在該Table View Controller控制下的Table View對(duì)應(yīng)的DataSource有多少數(shù)據(jù)
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return meals.count
}
//該方法表示了對(duì)于每一行Cell片橡,Cell內(nèi)部的內(nèi)容應(yīng)該被如何渲染
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    
    // Table view cells are reused and should be dequeued using a cell identifier.
    let cellIdentifier = "MealTableViewCell"
    
    guard let cell = tableView.dequeueReusableCell(withIdentifier: cellIdentifier, for: indexPath) as? MealTableViewCell  else {
        fatalError("The dequeued cell is not an instance of MealTableViewCell.")
    }
    
    // Fetches the appropriate meal for the data source layout.
    let meal = meals[indexPath.row]
    
    cell.nameLabel.text = meal.name
    cell.photoImageView.image = meal.photo
    cell.ratingControl.rating = meal.rating
    
    return cell
}
  • 將Controller與UI綁定
image.png
  • 重新啟動(dòng)項(xiàng)目,觀察到Table中有了我們加入的幾個(gè)Cell元素


    image.png

通過代碼自定義

通過代碼實(shí)現(xiàn)Table View的自定義本質(zhì)上和上述借助storyboard的方法一樣淮野,實(shí)際操作上有一些不同

  • 創(chuàng)建一個(gè)UITableViewCell(并創(chuàng)建xib)命名為 DemoListCell


    image.png
  • 在DemoListCell.xib中畫出你想要的cell樣式(AutoLayout)捧书,另外注意要給Cell制定 IdentityId: DemoListID


    image.png
  • 然后類似的吹泡,將xib中的自定義元素與Cell的類進(jìn)行元素綁定

  • 新建一個(gè)控制器類

class MainViewController: UIViewController,UITableViewDelegate,UITableViewDataSource
// 定義好DataSource
let cellId = "DemoListID" //獲取CellId
var tableData: (titles:[String], values:[String])? //定義一個(gè)數(shù)據(jù)源
// 在viewDidLoad()方法中創(chuàng)建了Table View
override func viewDidLoad() {
     super.viewDidLoad()
     self.title = "主頁(yè)"
     self.view.backgroundColor = UIColor.whiteColor()

     //demoList的設(shè)置
     self.demoList.frame = CGRectMake(0, 0, self.view.frame.width, self.view.frame.height)
     //下面代碼是用來去掉UITableView的Cell之間的線
     //self.demoList.separatorStyle = UITableViewCellSeparatorStyle.None
     let nib = UINib(nibName: "DemoListCell", bundle: nil) //nibName指的是我們創(chuàng)建的Cell文件名
     self.demoList.registerNib(nib, forCellReuseIdentifier: cellId)
     self.demoList.delegate = self
     self.demoList.dataSource = self
     self.view.addSubview(self.demoList)
     self.showData()
 }
  • 然后重載了相關(guān)DataSource的上述的幾個(gè)方法
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
     return 1
 }

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

     guard let count:Int = self.tableData!.titles.count else {
         print("沒有數(shù)據(jù)")
     }

     return count
 }
 func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
     let cell = tableView.dequeueReusableCellWithIdentifier(self.cellId, forIndexPath: indexPath) as! DemoListCell
     //cell.cellImg.image = UIImage(named: powerData[indexPath.row][2])
     cell.cellLabel.text = self.tableData!.titles[indexPath.row]

     return cell
 }

 func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath)
 {
     let index = indexPath.row
     let storyID = tableData!.values[index] as String
     let storyboard = UIStoryboard(name: "Main", bundle: nil)
     var nextView:UIViewController
     switch storyID {
     case "SCLAlert":
         nextView = storyboard.instantiateViewControllerWithIdentifier(storyID) as! SCLAlertDemoViewController
     case "SwiftNotice":
         nextView = storyboard.instantiateViewControllerWithIdentifier(storyID) as! SwiftNoticeDemoViewController
     case "CNPPopup":
         nextView = storyboard.instantiateViewControllerWithIdentifier(storyID) as! CNPPopupDemoViewController
     case "ClosureBack":
         nextView = LWRootViewController()
     default:
         nextView = storyboard.instantiateViewControllerWithIdentifier("SCLAlert") as! SCLAlertDemoViewController
     }
     self.navigationController?.pushViewController(nextView, animated: true)
 }

 func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat
 {
     return 50
 }

參考資料

Swift編程(一):UITableView及自定義Cell的Xib
Start Developing iOS (Swift) : Create a Table View

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市经瓷,隨后出現(xiàn)的幾起案子爆哑,更是在濱河造成了極大的恐慌,老刑警劉巖舆吮,帶你破解...
    沈念sama閱讀 206,378評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件揭朝,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡色冀,警方通過查閱死者的電腦和手機(jī)萝勤,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來呐伞,“玉大人敌卓,你說我怎么就攤上這事×媲猓” “怎么了趟径?”我有些...
    開封第一講書人閱讀 152,702評(píng)論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)癣防。 經(jīng)常有香客問我蜗巧,道長(zhǎng),這世上最難降的妖魔是什么蕾盯? 我笑而不...
    開封第一講書人閱讀 55,259評(píng)論 1 279
  • 正文 為了忘掉前任幕屹,我火速辦了婚禮,結(jié)果婚禮上级遭,老公的妹妹穿的比我還像新娘望拖。我一直安慰自己,他們只是感情好挫鸽,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,263評(píng)論 5 371
  • 文/花漫 我一把揭開白布说敏。 她就那樣靜靜地躺著,像睡著了一般丢郊。 火紅的嫁衣襯著肌膚如雪盔沫。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,036評(píng)論 1 285
  • 那天枫匾,我揣著相機(jī)與錄音架诞,去河邊找鬼。 笑死干茉,一個(gè)胖子當(dāng)著我的面吹牛谴忧,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播,決...
    沈念sama閱讀 38,349評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼俏蛮,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了上遥?” 一聲冷哼從身側(cè)響起搏屑,我...
    開封第一講書人閱讀 36,979評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎粉楚,沒想到半個(gè)月后辣恋,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,469評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡模软,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,938評(píng)論 2 323
  • 正文 我和宋清朗相戀三年伟骨,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片燃异。...
    茶點(diǎn)故事閱讀 38,059評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡携狭,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出回俐,到底是詐尸還是另有隱情逛腿,我是刑警寧澤,帶...
    沈念sama閱讀 33,703評(píng)論 4 323
  • 正文 年R本政府宣布仅颇,位于F島的核電站单默,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏忘瓦。R本人自食惡果不足惜搁廓,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,257評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望耕皮。 院中可真熱鬧境蜕,春花似錦、人聲如沸凌停。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)苦锨。三九已至逼泣,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間舟舒,已是汗流浹背拉庶。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評(píng)論 1 262
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留秃励,地道東北人氏仗。 一個(gè)月前我還...
    沈念sama閱讀 45,501評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親皆尔。 傳聞我的和親對(duì)象是個(gè)殘疾皇子呐舔,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,792評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容