I am getting json data from url as below:
{"message":"success","vendors":[{"businessname":"webixion","vendorid":"67","vendor_city":"kakinda"}]}
How to retrieve all 'message',businessname','vendorid','vendor_id' values
I am using SBJson Framework in Xcode 5 of IOS 7.
Please help me to solve this problem
I'm not sure if you have a reason to use SBJSON over the native
NSJSONSerialization, but the latter is about 5 times faster in my completely unscientific tests.With NSJSONSerialization, you would do something like this: