I've basically got rooms and sub rooms
rooms
Room1:
subroom 1 : true
subroomABC: true
Room2:
BobRoom: true
CatRoom: true
HatRoom: true
I'm basically just needing to pull the names (bobRoom/catroom/hatroom/subrooms) from each of the rooms and display them in a tableview.
I feel like normally I'd do something like getting the value and then do something like
snapshot.value["roomname]
to get info from something like this. Like posts are going to have a UID and all of the same key values like text/imageurl/poster, but here the keys are all different.
How do I grab the values under Room1 and Room2? I don't need them split up or anything, just a straight up list of all of the names.
I understand how to run observers and all of that and break snapshots down into snaps. I just can't wrap my head around this for some reason.
Thanks in advance for any help