Here i use XCode 5. I did enter a URL in iphone safari browser. it will be show authentication required pop up. Show like authentication required pop up image beolw.
Is possible show authentication required pop up in UIWebview?
Here i use XCode 5. I did enter a URL in iphone safari browser. it will be show authentication required pop up. Show like authentication required pop up image beolw.
Is possible show authentication required pop up in UIWebview?
This worked for me:
[self.webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:http://username:password@subdomain.companyname.com/]];
Also have a look at this stackoverflow answer