回答編集履歴
1
add
test
CHANGED
@@ -1,14 +1,26 @@
|
|
1
1
|
ちゃんとコードは通っていますかね?
|
2
|
+
|
3
|
+
(ブレークポイントを張るなどして確かめてください)
|
2
4
|
|
3
5
|
|
4
6
|
|
5
|
-
|
7
|
+
関数の定義がちょっとでも違うと呼ばれないので、気をつけてください。
|
6
8
|
|
7
9
|
|
8
10
|
|
9
11
|
> func pickerView(pickerView: UIPickerView, widthForComponent component: Int) -> CGFloat
|
10
12
|
|
13
|
+
|
14
|
+
|
15
|
+
↓
|
16
|
+
|
17
|
+
|
18
|
+
|
11
19
|
> func pickerView(_ pickerView: UIPickerView, widthForComponent component: Int) -> CGFloat
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
ですかね。
|
12
24
|
|
13
25
|
|
14
26
|
|