JSON Example:
[{
"title1":"Hey",
"title2":"Hoh",
"title3":"Hah",
"title4":"Hoo"
}]
How can I get value (hey,hoh,hah,hoo) without using valueForKey?
Could anyone guide me please?
————–Edit————–
I use JSON-Framework. And Now I use NSDictionary *jsonDict = [string JSONValue];
Assuming you have your data in an NSDictionary, try
allValues.Remember however than an NSDictionary is unsorted, so the order of the values is undefined.