IOS parses JSON in two ways

Source: Internet
Author: User

Method 1: Use the jsonkit Library

1. First download a JSON library from the Internet;

2. Add the Library to the project;

3. The Code is as follows:

Put JSON into a TXT file and nsstring

Nsstring * jsonstring = [nsstring
Stringwithcontentsoffile: JSON file address encoding: nsutf8stringencoding
Error: Nil];

Put the parsing in nsarray

Nsdata * Data = [jsonstring
Datausingencoding: nsutf8stringencoding];

Nsarray * arr = (nsarray *) [Data
Mutableobjectfromjsondata];

Nslog (@ "arr = % @", arr );

You can also put it in nsdictionary.

Nsdictionary * returndictionary = [data mutableobjectfromjsondata];

Method 2: Use nsjsonserialization

Nsdata * returndata = [jsonstring
Datausingencoding: nsutf8stringencoding];

Nserror * jsonparsingerror =
Nil;

Nsdictionary * returndictionary = [nsjsonserialization
Jsonobjectwithdata: returndata options: 0
Error: & jsonparsingerror];

If (! Jsonparsingerror ){

Nslog (@ "returndictionary =%@", returndictionary );

// Do your stuff here

}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.