Skip to content

Creating a Group Style TableView

   

Sample code to display the group style table view. The settings screen looks like this.

alt

import UIKit
class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
// Sectionで使用する配列を定義する.
private let sections: Array = ["セクション0", "セクション1", "セクション2"]
override func viewDidLoad() {
super.viewDidLoad()
// グループスタイルでTableViewを生成
let myTableView: UITableView = UITableView.init(frame: CGRect.zero, style: .grouped)
myTableView.frame = self.view.bounds
// Delegateの設定
myTableView.dataSource = self
myTableView.delegate = self
// Cell名の登録をおこなう.
myTableView.register(UITableViewCell.self, forCellReuseIdentifier: NSStringFromClass(UITableViewCell.self))
// Viewに追加する.
self.view.addSubview(myTableView)
}
//MARK: - TableViewのデリゲートメソッド
// セクション数を返す
func numberOfSections(in tableView: UITableView) -> Int {
return sections.count
}
// セクションのタイトルを返す
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
return sections[section]
}
// Cellが選択された際に呼び出される
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
print("Section: \(indexPath.section), Row: \(indexPath.row)")
}
// テーブルに表示する配列の総数を返す
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if section == 0 {
return 3
} else if section == 1 {
return 4
} else {
return 5
}
}
// Cellに値を設定する
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: NSStringFromClass(UITableViewCell.self), for: indexPath)
cell.textLabel?.text = "Section: \(indexPath.section), Row: \(indexPath.row)"
return cell
}
}

  1. Getting the SafeArea
  2. Read barcodes in iOS
  3. Search with SearchBar in CollectionView
  4. Implementing a flowing background
  5. PageViewController & PageControl
  6. Implementing CustomView with Code
  7. Nested implementation of UINavigationController in UITabBarController.