Creating (Nested) Realm Objects
Creating (Nested) Realm Objects
var post1 = Post(value: [
"postDescription": "Look, my dog! #dog #igers",
"postURL": "http://lala.com/dog.jpg",
])
var post2 = Post(value: [
"postDescription": "Look, my cat! #cute",
"postURL": "http://lala.com/cat.jpg",
])
var user = User(value: [
"id": NSUUID().UUIString,
"firstname": "Thanos",
"lastname": "Theodoridis",
"email": "[email protected]",
"posts": [post1, post2]
])