For a GET request I\'ve tried this simple method:
NSString *urlAddress = @"http://example.com/"; NSURL *url = [NSURL URLWithString:urlAddress]; NSURLReq
You can use an NSMutableURLRequest, set the HTTP method to POST, and then load it into your UIWebView using -loadRequest.