I am working on JSON parsing in Swift.
var results = [String:[AnyObject]]()
The above results
is having the data as shown below,
"fruit" = (
"apple",
"orange"
);
Here, data is appended dynamically during runtime. All I need is to get the keys and display them in table view as header.
How to get thekey
from results
in swift?