NSURL *urlString = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:urlString];
//Load the request in the UIWebView.
[self.webview loadRequest:requestObj];
UIWebView在重定向时遇到问题。如何确保uiwebview正确处理重定向?
答案 0 :(得分:0)
为了从一个站点重定向到另一个站点,只需加载您的网站,但添加BOOL var以检查是否加载了正确的页面。
BOOL page1Loaded;
然后,如果您需要更改到另一个站点,只需像这样创建一个全局NSString var
// for site name
NSString *urlAddress;
并在需要时更新
if(page1Loaded) {
// as seen in @Lithu T.V.'s comment, DO NOT FORGET the http:// or https://
// name of address
urlAddress = @"http://..." or @"https://..."
NSString *urlString = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:urlString];
//Load the request in the UIWebView.
[self.webview loadRequest:requestObj];
}
else {
// as seen in @Lithu T.V.'s comment, DO NOT FORGET the http:// or https://
// name of redirect
urlAddress = @"http://..." or @"https://..."
NSString *urlString = [NSURL URLWithString:urlAddress];
//URL Requst Object
NSURLRequest *requestObj = [NSURLRequest requestWithURL:urlString];
//Load the request in the UIWebView.
[self.webview loadRequest:requestObj];
}
希望这有帮助!