質問編集履歴
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -19,3 +19,59 @@
|
|
19
19
|
|
20
20
|
|
21
21
|
考えられることがあればご教授ください
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
すみません。追記です。
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
ヘッダーの設定メソッドにframe設定もしてみましたが
|
32
|
+
|
33
|
+
こちらも反映されませんでした。
|
34
|
+
|
35
|
+
ただし背景色の設定は反映されます。
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
```ここに言語を入力
|
40
|
+
|
41
|
+
// セクションのヘッダーに表示する設定を返す
|
42
|
+
|
43
|
+
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
44
|
+
|
45
|
+
// インスタンスのロード
|
46
|
+
|
47
|
+
let header = SectionHeaderView.instance()
|
48
|
+
|
49
|
+
header.setTitle(title: viewModel.Title(section: section), title2: viewModel.Title2(section: section))
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
// フレームの大きさを設定
|
54
|
+
|
55
|
+
header.frame = CGRect(x: 0, y: 0, width: self.view.frame.size.width, height: 300)
|
56
|
+
|
57
|
+
print(header.frame)
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
// 画像の更新
|
62
|
+
|
63
|
+
header.setImage(isOpen: viewModel.isOpen(in: section))
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
// 背景設定 RGBで設定
|
68
|
+
|
69
|
+
header.backgroundColor = UIColor(red: 255/255, green: 255/255, blue: 240/255, alpha: 1.0)
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
return header
|
74
|
+
|
75
|
+
}
|
76
|
+
|
77
|
+
```
|