swift
1import UIKit 2import Firebase 3@main 4class AppDelegate: UIResponder, UIApplicationDelegate { 5 var window: UIWindow? 6 func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 7 return true 8 } 9 // MARK: UISceneSession Lifecycle 10 func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 11 // Called when a new scene session is being created. 12 // Use this method to select a configuration to create the new scene with. 13 return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 14 } 15 func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set<UISceneSession>) { 16 // Called when the user discards a scene session. 17 // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. 18 // Use this method to release any resources that were specific to the discarded scenes, as they will not return. 19 } 20 FirebaseApp.configure() 21 return 22} 23```### firebaseのdelegateエラーについて 24 25### 26現在、SwiftにFire baseを入れようと試みています。しかしdelegateにて以下のコードを記入後にエラーが発生し、先に進めなくなりました。 27 FirebaseApp.configure() 28 29### 発生している問題・エラーメッセージ 30 FirebaseApp.configure()にエラーメッセージが表示されます
エラーメッセージ
expected decreation
Expected ( in argument list of function
Expected { in body of function decreation
Expected 'func' keyword in instance method decreation
Consective declarations on a line must be separeted ';'
取り組みとしては()の位置の見直しを行いました。 大変初歩的ですが、何卒よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。