-
Notifications
You must be signed in to change notification settings - Fork 38
Lists
George Kye edited this page Mar 8, 2016
·
3 revisions
Get a list by id.
ListsMDB.lists(apikey, listId: "5316bbcd92514158d20015b5"){
apiReturn in
let list = apiReturn.MBDBReturn as! ListsMDB
print(list.name)
print(list.favorite_count)
print(list.created_by)
print(list.description)
print(list.items[0].overview)
print(list.items[0].title)
}