回答編集履歴
3
訂正
test
CHANGED
@@ -1,3 +1,15 @@
|
|
1
1
|
cellForRowAt内のキャストで落ちてると思いますが、
|
2
2
|
|
3
3
|
UICollectionViewCellのカスタムクラスの名称はなんですか?
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
こうなおすのかな?
|
8
|
+
|
9
|
+
```swift
|
10
|
+
|
11
|
+
// cellForItemAt内
|
12
|
+
|
13
|
+
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CustomCell", for: indexPath) as! CustomCell
|
14
|
+
|
15
|
+
```
|
2
訂正
test
CHANGED
@@ -1,13 +1,3 @@
|
|
1
|
-
|
1
|
+
cellForRowAt内のキャストで落ちてると思いますが、
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
```swift
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
3
|
+
UICollectionViewCellのカスタムクラスの名称はなんですか?
|
10
|
-
|
11
|
-
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CustomCell", for: indexPath) as! CustomCell
|
12
|
-
|
13
|
-
```
|
1
訂正
test
CHANGED
@@ -1,13 +1,13 @@
|
|
1
|
-
|
1
|
+
広義のtypoです。
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
-
|
5
|
+
```swift
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
|
9
|
+
// cellForItemAt内
|
10
10
|
|
11
|
+
let cell = collectionView.dequeueReusableCell(withReuseIdentifier: "CustomCell", for: indexPath) as! CustomCell
|
11
12
|
|
12
|
-
|
13
|
-
|
13
|
+
```
|