當你看到如麥當勞報報精緻到不行的 Table View,有圖片又有許多不同的 Label 是怎麼來的呢,那我們就繼續看下去
首先我們要創一個 Table View Cell,選擇 Cocoa Touch Class
Also create XIB file 給打勾
創建成功後,你會發現你多了兩個檔案,這時你點剛剛創的 XIB 檔,把你想要的全部拉進去
拉好後再拉 Outlet 到你的 Cell 裡
進到你的 ViewController 在你的 ViewDidLoad,TableViewCell: XIB檔案名稱 、cell: Identifier名稱
self.tableview.register(UINib(nibName: "TableViewCell", bundle: nil), forCellReuseIdentifier: "cell")
在 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell 指定剛剛創建的cell
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! TableViewCell
就能 RUN 囉