回答編集履歴
1
訂正
test
CHANGED
@@ -11,3 +11,43 @@
|
|
11
11
|
cell.Number.text = "(indexPath.row + 1)"
|
12
12
|
|
13
13
|
```
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
---
|
18
|
+
|
19
|
+
追記
|
20
|
+
|
21
|
+
デリゲートメソッドcellForRowAt内の
|
22
|
+
|
23
|
+
cell.Number.text = ホニャララの上で
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
```swift
|
28
|
+
|
29
|
+
print("id: (id)")
|
30
|
+
|
31
|
+
print("type: (type(of: id))")
|
32
|
+
|
33
|
+
print("indexPath.row: (indexPath.row)")
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
```
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
ってしてみてください。
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
セルの個数分プリントされますが、最後が
|
46
|
+
|
47
|
+
id: [1, 2, 3, 4, 5, 6, 7, 8, 9]
|
48
|
+
|
49
|
+
type: [Int]
|
50
|
+
|
51
|
+
indexPath.row: 8
|
52
|
+
|
53
|
+
ならばそこに問題はないと思いますし、普通に動くと思いますよ。
|