回答編集履歴
1
修正
test
CHANGED
@@ -8,7 +8,7 @@
|
|
8
8
|
|
9
9
|
// Section Header View
|
10
10
|
|
11
|
-
func tableView(
|
11
|
+
func tableView(tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
|
12
12
|
|
13
13
|
// HeaderのViewを作成してViewを返す
|
14
14
|
|
@@ -30,7 +30,7 @@
|
|
30
30
|
|
31
31
|
// Section Header Height
|
32
32
|
|
33
|
-
func tableView(
|
33
|
+
func tableView(tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
|
34
34
|
|
35
35
|
// ヘッダーViewの高さを返す
|
36
36
|
|