2017-04-12 10 views

答えて

3

日付著者、のような正規Swift dictionary、設定された所望の特性を作成し、上記と同じ構文を使用してsetValueを呼び出します。例えば

let ref: FIRDatabaseReference = ... 
let post = [ 
    "title": "Incompleteness Theorem", 
    "author": "Kurt Gödel", 
    "date": "1931" 
] 
ref.child("Posts").childByAutoId().setValue(post) 
関連する問題