質問編集履歴
6
画像の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -242,6 +242,8 @@
|
|
242
242
|
|
243
243
|
![イメージ説明](a60e14f8af19e3b8e7484ca97b21943d.png)
|
244
244
|
|
245
|
+
![イメージ説明](966a52e07e5a2a9aced467a5a76e542c.png)
|
246
|
+
|
245
247
|
|
246
248
|
|
247
249
|
### 補足情報(FW/ツールのバージョンなど)
|
5
ソースコードの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -138,7 +138,99 @@
|
|
138
138
|
|
139
139
|
```
|
140
140
|
|
141
|
-
|
141
|
+
追記のソースコード
|
142
|
+
|
143
|
+
```Appdelegate
|
144
|
+
|
145
|
+
import UIKit
|
146
|
+
|
147
|
+
import FirebaseCore
|
148
|
+
|
149
|
+
import Firebase
|
150
|
+
|
151
|
+
import FirebaseDatabase
|
152
|
+
|
153
|
+
import FirebaseStorage
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
@UIApplicationMain
|
162
|
+
|
163
|
+
class AppDelegate: UIResponder, UIApplicationDelegate {
|
164
|
+
|
165
|
+
var window: UIWindow?
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
func application(_ application: UIApplication,
|
172
|
+
|
173
|
+
didFinishLaunchingWithOptions launchOptions:
|
174
|
+
|
175
|
+
[UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
176
|
+
|
177
|
+
//ここから
|
178
|
+
|
179
|
+
return true
|
180
|
+
|
181
|
+
}
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
}
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
internal func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
194
|
+
|
195
|
+
// Override point for customization after application launch.
|
196
|
+
|
197
|
+
FirebaseApp.configure() //こちらに移動しました。
|
198
|
+
|
199
|
+
return true
|
200
|
+
|
201
|
+
|
202
|
+
|
203
|
+
}
|
204
|
+
|
205
|
+
|
206
|
+
|
207
|
+
// MARK: UISceneSession Lifecycle
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
|
212
|
+
|
213
|
+
// Called when a new scene session is being created.
|
214
|
+
|
215
|
+
// Use this method to select a configuration to create the new scene with.
|
216
|
+
|
217
|
+
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
|
218
|
+
|
219
|
+
}
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
|
224
|
+
|
225
|
+
// Called when the user discards a scene session.
|
226
|
+
|
227
|
+
// If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
|
228
|
+
|
229
|
+
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
|
230
|
+
|
231
|
+
}
|
232
|
+
|
233
|
+
```
|
142
234
|
|
143
235
|
### 試したこと
|
144
236
|
|
4
画像の添付
test
CHANGED
File without changes
|
test
CHANGED
@@ -148,6 +148,8 @@
|
|
148
148
|
|
149
149
|
![イメージ説明](9a0eb0269c8bfbf653c0cfa8db85aabb.png)
|
150
150
|
|
151
|
+
![イメージ説明](a60e14f8af19e3b8e7484ca97b21943d.png)
|
152
|
+
|
151
153
|
|
152
154
|
|
153
155
|
### 補足情報(FW/ツールのバージョンなど)
|
3
画像の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -146,7 +146,7 @@
|
|
146
146
|
|
147
147
|
日本語、英数字を試してみましたが、ダメでした。
|
148
148
|
|
149
|
-
![イメージ説明](
|
149
|
+
![イメージ説明](9a0eb0269c8bfbf653c0cfa8db85aabb.png)
|
150
150
|
|
151
151
|
|
152
152
|
|
2
画像の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -146,6 +146,8 @@
|
|
146
146
|
|
147
147
|
日本語、英数字を試してみましたが、ダメでした。
|
148
148
|
|
149
|
+
![イメージ説明](59b293e72e154ecabef4983317a95f5d.png)
|
150
|
+
|
149
151
|
|
150
152
|
|
151
153
|
### 補足情報(FW/ツールのバージョンなど)
|
1
画像の追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
### 発生している問題・エラーメッセージ
|
22
22
|
|
23
|
-
|
23
|
+
![イメージ説明](d7feed24ff767b98748200e47e0a0eb2.png)
|
24
24
|
|
25
25
|
|
26
26
|
|