开发者

Passing text to a php POST method iphone sdk

I'm developing an iPhone application and I need to send some information to an url from a textview and 2 texfields, using the HTTP POST method. (to, subject开发者_如何学Go, message). How do I do it? I understand it is something with NSURLRequest, but I didn't find anything that could actually help me. So if you could please include a clarifying code example, I would really appreciate it.


I recently wrote a subclass of NSMutableURLRequest to make form POSTing a lot easier. It's on github: http://github.com/davedelong/CHFormRequest

You use it like this:

#import "CHFormRequest.h"

CHFormRequest * r = [[CHFormRequest alloc] initWithURL:[NSURL URLWithString:@"http://example.com/myForm.php"]];

[r setValue:@"test" forFormField:@"field1"];    
[r setFile:@"/Users/example/Desktop/myFile.txt" forFormField:@"file"];

NSHTTPURLResponse * response = nil;
NSError * error = nil;
NSData * d = [NSURLConnection sendSynchronousRequest:r returningResponse:&response error:&error];
[r release];


Maybe you find

iPhone sending POST with NSURLConnection Problem using NSURLRequest to POST data to server

helpful.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜