iOS Network Chapter

Source: Internet
Author: User

One, synchronous GET request method

-(void) Synchronizationget

{

nsstring *strurl = @ "http://olasapi.sinaapp.com//index.php";

nsurl *url = [nsurl urlwithstring: strURL];

nsurlrequest *request = [[nsurlrequest alloc] initwithurl: url];

nsdata *data = [nsurlconnection sendsynchronousrequest: Request Returningresponse :nil error:nil];

NSLog(@ " request complete ");

nsdictionary *dic = [nsjsonserialization jsonobjectwithdata:d ata options: nsjsonreadingallowfragments error:nil];

NSLog(@ "%@", dic);

}

Second, asynchronous get

-(void) Asynchronousget

{

nsstring *strurl = @ "http://olasapi.sinaapp.com//index.php";

nsurl *url = [nsurl urlwithstring: strURL];

nsurlrequest *request = [[nsurlrequest alloc] initwithurl: url];

nsurlconnection *connection = [[nsurlconnection alloc] initwithrequest: Request Delegate:self];

if (connection) {

_data = [nsmutabledata new];

}

}

#pragma mark-nsurlconnection callback method

-(void) connection: (nsurlconnection *) connection didreceivedata: (nsdata *) data

{

[_data appendData:d ATA];

}

-(void) connection: (nsurlconnection *) connection didfailwitherror: (nserror *) Error

{

}

-(void) connectiondidfinishloading: (nsurlconnection *) connection

{

NSLog(@ " request complete ");

nsdictionary *dic = [nsjsonserialization jsonobjectwithdata:_data options: nsjsonreadingallowfragments error:nil];

NSLog(@ "%@", dic);

}

Three, asynchronous post

-(void) Asynchronouspost

{

nsstring *strurl = @ "http://olasapi.sinaapp.com//index.php";

nsurl *url = [nsurl urlwithstring: strURL];

nsmutableurlrequest *request = [[nsmutableurlrequest alloc] initwithurl: URL ];

[Request Sethttpmethod:@ "POST"];

[Request sethttpbody:@ "]

nsurlconnection *connection = [[nsurlconnection alloc] initwithrequest: Request delegate:self];

if (connection) {

_data = [nsmutabledata new];

}

}

Proxy method and proxy method in get asynchronous

iOS Network Chapter

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.