我正在使用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)。 我真的希望很快能收到你的来信。
答案 0 :(得分:3)
如果您尝试在UIViewController
上使用,请务必添加:
import Firebase
在您将CocoaPod添加到项目中之后,到YourViewController
,清除缓存(ctrl+k
)并重建(ctrl+b
)。