Parse Array Swift

Hi,

My database returns values like this: ["name": Beep Boop]
How do I convert this to Beep Boop?

It returns a dictionary.

If dictionary is myDictFromDB,
call
Code Block
myDictFromDB["name"]

You will get an optional, so you can unwrap with

Code Block
myDictFromDB["name"] ?? ""

Parse Array Swift
 
 
Q