2017-03-07 86 views
0

我有一個火力點結構設置如下:無法訪問火力地堡捕捉數據

enter image description here

每個鍵都包含,我想用它來填充UICollectionView數據。但是,我無法訪問Firebase數據。在Android中,我使用了類似於

的方法
dataSnapshot.child("xxx").getValue() 

但是,該類型的輔助功能在iOS中似乎不可用。下面是我想的方法:

 self.dataSource = self.collectionView?.bind(to: self.ref.child("Polls")) { collectionView, indexPath, snap in 
     let cell = collectionView.dequeueReusableCell(withReuseIdentifier: reuseIdentifier, for: indexPath) as! PollCell 
     /* populate cell */ 
     cell.pollQuestion.text = snap.child("question").getvalue 
      print(indexPath) 

     return cell 
    } 

我接收狀態的值類型的錯誤「FIRDataSnapshot」沒有成員的孩子

回答