Swift:使用firebase SDK时使用未解析的标识符'FDataSnapShot'

时间:2016-02-26 04:19:36

标签: ios swift firebase

我正在使用swift开发带firebase的应用程序。 使用FDataSnapShot时出错。 这是我的代码。

    DataService.dataService.DATA_REF.observeEventType(.Value, withBlock: {
        snapshot in
        var newItems = [FDataSnapshot]()

        // loop through the children and append them to the new array
        for item in snapshot.children {
            newItems.append(item as! FDataSnapshot)
        }

        // replace the old array
        self.items = newItems
    })

我用cocoapods安装了firebase sdk。 我的pod文件看起来像这样。

use_frameworks!

pod 'Firebase'
target 'nos' do
end

有没有人有这方面的经验? *注意:我使用的是最新版本的Xcode(7.2)。 我真的希望很快能收到你的来信。

1 个答案:

答案 0 :(得分:3)

如果您尝试在UIViewController上使用,请务必添加:

import Firebase
在您将CocoaPod添加到项目中之后,

YourViewController,清除缓存(ctrl+k)并重建(ctrl+b)。