質問編集履歴

2

ソースコードの変更

2020/02/03 01:38

投稿

Naoki_Pro
Naoki_Pro

スコア23

test CHANGED
File without changes
test CHANGED
@@ -102,8 +102,6 @@
102
102
 
103
103
  print(document.data() as Any)
104
104
 
105
- print(document.value(forKey: "userName") as Any)
106
-
107
105
  print("Document data: (dataDescription)")
108
106
 
109
107
  /*

1

タイトルの変更と説明の追加

2020/02/03 01:38

投稿

Naoki_Pro
Naoki_Pro

スコア23

test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- SwiftにおいてCloud Firestoreに保存したデータ(userName)取得したい
5
+ SwiftにおいてCloud Firestoreに保存したデータ(userNameの値を)取得し、UILabelに反映させたい
6
6
 
7
7
 
8
8
 
@@ -74,6 +74,12 @@
74
74
 
75
75
  ```Swift
76
76
 
77
+
78
+
79
+ @IBOutlet weak var userNameLabel: UILabel!
80
+
81
+
82
+
77
83
  func getUserInfo() {
78
84
 
79
85
 
@@ -108,6 +114,10 @@
108
114
 
109
115
  */
110
116
 
117
+
118
+
119
+ userNameLabel.text = ここにCloud Firestoreに保存されたuserNameの値を入れたい
120
+
111
121
 
112
122
 
113
123
 
@@ -128,7 +138,7 @@
128
138
 
129
139
  }
130
140
 
131
- ```
141
+ ```
132
142
 
133
143
 
134
144
 
@@ -137,6 +147,14 @@
137
147
 
138
148
 
139
149
  ![ログ画面](ca034417381df47f58cd27f204be214c.png)
150
+
151
+
152
+
153
+ ### 発生している問題
154
+
155
+
156
+
157
+ 値の取得方法が分からず、UIlabal.textに値を渡せない。
140
158
 
141
159
 
142
160