How to parse json? Explain
Answer / Pande Rajkumar Ayugyanarayan
To parse JSON in Apple iOS, use the JSONKit or SBJSON libraries. If you prefer built-in methods, use NSJSONSerialization class:
NSError *error;
id jsonData = [NSJSONSerialization JSONObjectWithData:yourData options:kNilOptions error:&error];
| Is This Answer Correct ? | 0 Yes | 0 No |
Tell me what is iphone os?
What is nsuserdefaults?
What is retain in ios?
What is the difference between release and autorelease?
What is thread in ios?
What is nonatomic?
Explain stack and heap?
Name the memory management rules and their related methods.
What is strong in ios?
What are the different store migration options? When are they used? How do they work? What is mapping model?
How to convert MVC design pattern to MVVM design patterns
What is appdelegate?