Sending POST
and GET
requests in iOS is quite easy; and there's no need for an additional framework.
POST
Request:
We begin by creating our POST
's body
(ergo. what we'd like to send) as an NSString
, and converting it to NSData
.
NSString *post = [NSString stringWithFormat:@"test=Message&this=isNotReal"];
NSData *postData = [post dataUsingEncoding:NSASCIIStringEncoding allowLossyConversion:YES];