質問編集履歴
1
アスタリスク
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,4 +1,5 @@
|
|
1
|
+
```
|
1
|
-
|
2
|
+
override func viewWillAppear(_ animated: Bool) {
|
2
3
|
super.viewWillAppear(animated)
|
3
4
|
let cell = tableVView.dequeueReusableCell(withIdentifier: "Celll") as! ItiranTableViewCell
|
4
5
|
for post in cell{
|
@@ -11,7 +12,8 @@
|
|
11
12
|
|
12
13
|
}
|
13
14
|
}
|
15
|
+
}
|
14
|
-
|
16
|
+
```
|
15
17
|
|
16
18
|
ここで``` for post in cell```の```cell```に対して
|
17
19
|
Type 'ItiranTableViewCell' does not conform to protocol 'Sequence'とエラーが出ます。何かいいアイデアはないでしょうか?
|