I want to open a URL that requires a password and username in UIWebview. For example, open my local Wi-Fi router (192.168.1.1). But when I try to execute the code, a popup like Safari does not require a password and username.
NSURL *url = [NSURL URLWithString:@"http://192.168.1.1"]; NSURLRequest *httpReq = [NSURLRequest requestWithURL:url]; [self._webView loadRequest:httpReq];
Since someone told me to use NSURLConnectionDelegate, I know this, but I donβt know how to show the authorized page in UIWebView.
source share