How can I get a UIWebView
to load non-mobile sites?
Currently I'm using this:
NSMutableURLRequest *request = [NSURL URLWithString:websiteLink];
[request setValue:
[NSString stringWithFormat:@"%@ Safari/528.16", [request valueForHTTPHeaderField:@"User-Agent"]]
forHTTPHeaderField:@"User_Agent"];
[webView loadRequest:request];
but the app crashes when loading the web view.
Any help would be greatly appreciated.