在UIWebView中加载HTTPSurl
我开始iPhone编程,我有很大的问题,我不能解决。
所以,我有一个UIWebview
,我可以加载HTTPurl没有问题:
NSString urlAdress; urlAdress = @"http://servername"; NSURL *url = [NSURL URLWithString:urlAdress]; NSURLRequest *requestObj = [NSURLRequest requestWithURL:url]; [webView loadRequest:requestObj];
它的工作,我的页面加载在我的UIwebView,但是当我replace:
urlAdress = @"http://servername";
通过
urlAdress = @"https://servername";
我有空白的屏幕。
我读了它的正常,但有没有简单的方法来加载我的web视图的url?
我读了关于ASIHTTPRequest
但我没有到达实施它。
我只想加载HTTPSurl 。
尝试这个 :
- (BOOL)connection:(NSURLConnection *)connection canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace { return YES; } - (void)connection:(NSURLConnection *)connection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge { [challenge.sender useCredential:[NSURLCredential credentialForTrust:challenge.protectionSpace.serverTrust] forAuthenticationChallenge:challenge]; }