Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created August 7, 2012 13:02
Show Gist options
  • Save jlcampana/3285112 to your computer and use it in GitHub Desktop.
Save jlcampana/3285112 to your computer and use it in GitHub Desktop.
ASI HTTP Request + JSON Sample
ASIHTTPRequest *req = [ASIHTTPRequest requestWithURL:URL];
req.delegate = self;
req.userInfo = [NSDictionary dictionaryWithObject:@"initialRequest" forKey:@"type"];
NSData *body = [jsonString dataUsingEncoding:NSUTF8StringEncoding];
[req appendPostData:body];
[req startSynchronous];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment