I have a UIWebView
in my iPhone application where I am loading the website. Basically I am opening the mobile website in app. In website, there is media upload
functionality/ When user tries to upload photo(within mobile site), I am facing error is :-
NSURLErrorDomain error -999
The same web view(code) works fine with other URLs like www.apple.com and www.google.com.
NSURLRequest *request = [[NSURLRequest alloc]initWithURL:[NSURL URLWithString:self.urlToLoad]];
[webview loadRequest:request];
It doesnt seem to be a redirect issue. How to fix the error?
I am also getting the below warnings.
WF: _userSettingsForUser mobile: { filterBlacklist = ( ); filterWhitelist = ( ); restrictWeb = 1; useContentFilter = 0; useContentFilterOverrides = 0; whitelistEnabled = 0; }
Related error link:- https://discussions.apple.com/thread/1727260?start=0&tstart=0