質問編集履歴
4
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,9 +48,9 @@
|
|
48
48
|
|
49
49
|
var db: Firestore!
|
50
50
|
|
51
|
+
var todos: [String] = [];
|
52
|
+
|
51
|
-
//le
|
53
|
+
// var titles = [String]()
|
52
|
-
|
53
|
-
var titles = [String]()
|
54
54
|
|
55
55
|
|
56
56
|
|
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
|
19
19
|
エラー
|
20
20
|
|
21
|
-
`Cannot assign value of type 'Character' to type 'String'`
|
21
|
+
~`Cannot assign value of type 'Character' to type 'String'`~
|
22
22
|
|
23
23
|
|
24
24
|
|
@@ -48,7 +48,11 @@
|
|
48
48
|
|
49
49
|
var db: Firestore!
|
50
50
|
|
51
|
-
let todos: [String] = [];
|
51
|
+
//let todos: [String] = [];
|
52
|
+
|
53
|
+
var titles = [String]()
|
54
|
+
|
55
|
+
|
52
56
|
|
53
57
|
|
54
58
|
|
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,6 +16,12 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
+
エラー
|
20
|
+
|
21
|
+
`Cannot assign value of type 'Character' to type 'String'`
|
22
|
+
|
23
|
+
|
24
|
+
|
19
25
|
![![イメージ説明](753dfc3c359e1746c3b1ddc03dce9f2c.jpeg)](0a5d679faeda306556dfc57f3bf27992.jpeg)
|
20
26
|
|
21
27
|
|
1
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,18 @@
|
|
1
|
-
|
1
|
+
Cloud Firestoreからデータを取得してcellに表示したいです。
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
・出来ていること
|
6
|
+
|
7
|
+
コメントアウトしたTODOはcellに表示出来ています。
|
8
|
+
|
9
|
+
Cloud Firestoreからのデータ取得
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
・出来ていないこと
|
14
|
+
|
15
|
+
取得したデータをcellForRowAtに表示
|
2
16
|
|
3
17
|
|
4
18
|
|