質問編集履歴
2
test
CHANGED
File without changes
|
test
CHANGED
@@ -50,7 +50,7 @@
|
|
50
50
|
|
51
51
|
###
|
52
52
|
|
53
|
-
現在、SwiftにFire baseを入れようと試みています。
|
53
|
+
現在、SwiftにFire baseを入れようと試みています。しかしdelegateにて以下のコードを記入後にエラーが発生し、先に進めなくなりました。
|
54
54
|
|
55
55
|
FirebaseApp.configure()
|
56
56
|
|
@@ -77,3 +77,7 @@
|
|
77
77
|
|
78
78
|
|
79
79
|
```
|
80
|
+
|
81
|
+
取り組みとしては()の位置の見直しを行いました。
|
82
|
+
|
83
|
+
大変初歩的ですが、何卒よろしくお願いします。
|
1
詳細に
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,6 +1,48 @@
|
|
1
1
|
```swift
|
2
2
|
|
3
|
+
import UIKit
|
3
4
|
|
5
|
+
import Firebase
|
6
|
+
|
7
|
+
@main
|
8
|
+
|
9
|
+
class AppDelegate: UIResponder, UIApplicationDelegate {
|
10
|
+
|
11
|
+
var window: UIWindow?
|
12
|
+
|
13
|
+
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
|
14
|
+
|
15
|
+
return true
|
16
|
+
|
17
|
+
}
|
18
|
+
|
19
|
+
// MARK: UISceneSession Lifecycle
|
20
|
+
|
21
|
+
func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration {
|
22
|
+
|
23
|
+
// Called when a new scene session is being created.
|
24
|
+
|
25
|
+
// Use this method to select a configuration to create the new scene with.
|
26
|
+
|
27
|
+
return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role)
|
28
|
+
|
29
|
+
}
|
30
|
+
|
31
|
+
func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) {
|
32
|
+
|
33
|
+
// Called when the user discards a scene session.
|
34
|
+
|
35
|
+
// If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions.
|
36
|
+
|
37
|
+
// Use this method to release any resources that were specific to the discarded scenes, as they will not return.
|
38
|
+
|
39
|
+
}
|
40
|
+
|
41
|
+
FirebaseApp.configure()
|
42
|
+
|
43
|
+
return
|
44
|
+
|
45
|
+
}
|
4
46
|
|
5
47
|
```### firebaseのdelegateエラーについて
|
6
48
|
|
@@ -10,44 +52,28 @@
|
|
10
52
|
|
11
53
|
現在、SwiftにFire baseを入れようと試みています。
|
12
54
|
|
13
|
-
|
55
|
+
FirebaseApp.configure()
|
14
56
|
|
15
57
|
|
16
58
|
|
17
59
|
### 発生している問題・エラーメッセージ
|
18
60
|
|
19
|
-
|
61
|
+
FirebaseApp.configure()にエラーメッセージが表示されます
|
20
62
|
|
21
63
|
```
|
22
64
|
|
23
65
|
エラーメッセージ
|
24
66
|
|
25
|
-
|
67
|
+
expected decreation
|
68
|
+
|
69
|
+
Expected ( in argument list of function
|
70
|
+
|
71
|
+
Expected { in body of function decreation
|
72
|
+
|
73
|
+
Expected 'func' keyword in instance method decreation
|
74
|
+
|
75
|
+
Consective declarations on a line must be separeted ';'
|
26
76
|
|
27
77
|
|
28
78
|
|
29
|
-
### 該当のソースコード
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
```ここに言語名を入力
|
34
|
-
|
35
|
-
ソースコード
|
36
|
-
|
37
79
|
```
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
### 試したこと
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
ここに問題に対して試したことを記載してください。
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
### 補足情報(FW/ツールのバージョンなど)
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
ここにより詳細な情報を記載してください。
|