在Firebase中,我们可以像这样创建一个新对象:
Firebase *postRef = [ref childByAppendingPath: @"posts"];
NSDictionary *post1 = @{
@"author": @"gracehop",
@"title": @"Announcing COBOL, a New Programming Language"
};
Firebase *post1Ref = [postRef childByAutoId];
[post1Ref setValue: post1];
此新帖子可能会保存在以下网址中:http://app.firebaseIO.com/posts/$postuid
稍后当用户在某个UIViewController
查看帖子时,我们可能想发布评论。但是,为了发表评论,我们需要访问帖子的内容。似乎唯一可行的方法是将uid保存到post对象中吗?
基本上,一般来说最好将对象的内部存储在其中吗?