我正在尝试在UIWebView上打开一个受保护的网页。我也收到了该错误消息。但是,如果我试图在safari中打开它,它会发出警报,我可以从那里强行继续。我如何使用UIWebView
实现它提前致谢
答案 0 :(得分:2)
我不清楚你的问题,但我明白你想要在UIWebView中加载一些网页可能会使用的一些网页
UIWebView *loacalWebView=[[uiwebView alloc]initwithFrame:self.view.frame];
loacalWebView.delegate=self;
NSString *urlAddress = @"http://www.google.co.in";
//Create a URL object.
NSURL *url = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:url];
//Load the request in the UIWebView.
[loacalWebView loadRequest:requestObj];