I used a simple NSLog on a dictionary:
NSLog(@"dict %@", dictionary);
the result was:
...
"first_name" = Peter;
gender = male;
id = 1171548848;
"last_name" = Lapisu;
...
Why are some key names in "quotes" and some not?
I used a simple NSLog on a dictionary:
NSLog(@"dict %@", dictionary);
the result was:
...
"first_name" = Peter;
gender = male;
id = 1171548848;
"last_name" = Lapisu;
...
Why are some key names in "quotes" and some not?