現状
TableViewのセクションヘッダにタイトルが表示されず、困っています。
Swift初心者なので、凡ミスなのかと思うのですが...
実現したいこと
セクションヘッダにタイトルを表示させたいです
試したコード
swift
1import UIKit 2 3class HeadingTableViewController: UITableViewController { 4 5 //セクション 6 let list: [String] = ["セクション1", "セクション 2", "セクション 3", "セクション4"] 7 8 //セル 9 let subList: [[String]] = [["セル1", "セル2", "セル3"], ["セル1", "セル2", "セル3"], ["セル1", "セル2", "セル3"], ["セル1", "セル2", "セル3"]] 10 11 override func viewDidLoad() { 12 super.viewDidLoad() 13 } 14 15 // MARK: - Table view data source 16 override func numberOfSections(in tableView: UITableView) -> Int { 17 18 return list.count 19 } 20 21 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 22 23 return subList[section].count 24 } 25 26 override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? { 27 28 return list[section] 29 } 30 31 override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { 32 let cell = tableView.dequeueReusableCell(withIdentifier: "contentsOfTable", for: indexPath) 33 34 cell.textLabel?.text = subList[indexPath.section][indexPath.row] 35 36 return cell 37 } 38 39 // 遷移先にデータを渡す 40 override func prepare(for segue: UIStoryboardSegue, sender: Any?) { 41 42 } 43 44 // cellが押されたときに呼ばれる 45 override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { 46 47 } 48 49 // Section Header View 50 override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { 51 // HeaderのViewを作成してViewを返す 52 let headerView = UIView() 53 let label = UILabel() 54 label.text = list[section] 55 label.textColor = UIColor.black 56 headerView.backgroundColor = UIColor.yellow 57 headerView.addSubview(label) 58 return headerView 59 } 60 61 // Section Header Height 62 override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { 63 // ヘッダーViewの高さを返す 64 return 50 65 }
考えられる原因
上のコードの最後の方にある2つのメソッド(以下にもう一度貼っておきます)を追記する前までは正常でした。ヘッダーのレイアウトを変えたいと思い、追記したところ現在に至ります。
swift
1 // Section Header View 2 override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? { 3 // HeaderのViewを作成してViewを返す 4 let headerView = UIView() 5 let label = UILabel() 6 label.text = list[section] 7 label.textColor = UIColor.black 8 headerView.backgroundColor = UIColor.yellow 9 headerView.addSubview(label) 10 return headerView 11 } 12 13 // Section Header Height 14 override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat { 15 // ヘッダーViewの高さを返す 16 return 50 17 }
詳しい方がいましたら教えていただきたいです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/09 13:45