I\'m setting up a webview but I need to load the content of the webview using a proxy. Any of you knows how can I\'m implement the proxy in NSURLRequest?
for example
You cannot add a proxy to NSURLRequest. You will need to use a 3rd party library like ASIHTTPRequest.
// Configure a proxy server manually
NSURL *url = [NSURL URLWithString:@"http://allseeing-i.com/ignore"];
ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
[request setProxyHost:@"192.168.0.1"];
[request setProxyPort:3128];