NSURLSession network request, nsurlsession request

Source: Internet
Author: User

NSURLSession network request, nsurlsession request

I personally feel that it is difficult to find simple network requests on the Internet. Maybe it's just me that I'm not familiar with it. All of them have the following sections. Although they are all code, they all have comments.

// 1/obtain the file access path NSString * path = @ "http://1.studyios.sinaapp.com/getAllClass.php"; // 2. encapsulate url nsurl * url = [NSURL URLWithString: path]; // 3. create request command NSURLRequest * request = [NSURLRequest requestWithURL: url]; // 4. create a session object and implement NSURLSession * session = [NSURLSession sharedSession] using the single-profit method; // 5. the task that executes the session obtains the data Object NSURLSessionDataTask * datatask = [session dataTaskWithRequest: request completionHandler: ^ (NSData * _ Nullable data, NSURLResponse * _ Nullable response, NSError * _ Nullable error) {// 7. json NSArray * arrJson = [NSJSONSerialization JSONObjectWithData: data options: NSJSONReadingMutableLeaves error: & error]; NSLog (@ "% @", arrJson); // NSLog (@ "% @", data);}]; // 6. real task execution [datatask resume];

 

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.