2017-06-13 50 views
0

所以我是Firebase的新手,我正在关注如何将您的Swift应用连接到Firebase的这个家伙教程,这对他来说完全没问题。但是当我尝试导入'FirebaseDatabase'时,它给了我这个错误;无法将模块'fireBaseDatabase'加载为'FirebaseDatabase'

无法加载模块“fireBaseDatabase”为“FirebaseDatabase

我想知道我怎么能解决这个问题。谢谢。

这是我的podfile;

# Uncomment the next line to define a global platform for your project 
# platform :ios, '9.0' 

target 'FIRBaseQuickStart' do 
    # Comment the next line if you're not using Swift and don't want to use dynamic frameworks 
    use_frameworks! 

    # Pods for FIRBaseQuickStart 

    pod ‘Firebase’ 
    pod ‘Firebase/Database’ 

end 

现在它说“线程1:信号SIGABRT”,当我尝试运行该应用程序。

import UIKit 
import Firebase 

@UIApplicationMain 
class AppDelegate: UIResponder, UIApplicationDelegate { 

    var window: UIWindow? 


    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { 

     FirebaseApp.configure() 

     return true 
    } 

    func applicationWillResignActive(_ application: UIApplication) { 
     // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 
     // Use this method to pause ongoing tasks, disable timers, and invalidate graphics rendering callbacks. Games should use this method to pause the game. 
    } 

    func applicationDidEnterBackground(_ application: UIApplication) { 
     // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 
     // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 
    } 

    func applicationWillEnterForeground(_ application: UIApplication) { 
     // Called as part of the transition from the background to the active state; here you can undo many of the changes made on entering the background. 
    } 

    func applicationDidBecomeActive(_ application: UIApplication) { 
     // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 
    } 

    func applicationWillTerminate(_ application: UIApplication) { 
     // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 
    } 


} 

它给我在类声明行上的错误。这太令人沮丧了。

+1

你能否更新你的问题以包含与此相关的代码?你是否说过你想在类的顶部编写'import FirebaseDatabase'?我想帮忙,但我不完全确定你的意思。 –

+0

您是否创建了解决方案? –

回答

0

如果您使用的是最新的(4.0)版本Firebase,您只需要使用import Firebase,正如我从文档中了解的那样。

而对于数据库裁判:

var ref: DatabaseReference! 

ref = Database.database().reference() 

你可以找到它here

试试吧。希望能帮助到你。

+0

这没有帮助。 XCode也不会完成“数据库”或“FIRDatabase”,但它会识别“Firebaseapp.configure()”并自动完成。另外,当我尝试导入诸如“Firebase”方法之类的内容时,自动完成功能会将它们以红线划掉。 –

+0

@EgeKaanGürkan这是个愚蠢的问题,但是。你有没有建立你的项目(几乎有错误)?它从POD开始构建。只有在它之后,你才能使用它们。 –

+0

@EgeKaanGürkan,你可以提供你的podfile吗? –

0

事实证明,这是因为项目名称。我把它当作'fireBaseDatabase',结果使事情变得复杂。我用另一个名字创建了另一个项目,现在很好!