作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图检测 uiwebview 中是否加载了特定的 url,如果是,则将 webview 重定向到不同的 url。到目前为止,我已经得到了以下代码,它似乎对我有用,但到目前为止还没有运气,任何人都知道我做错了什么:
-(BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
if(request.URL == [NSURL URLWithString:@"https://cheese.com/"])
{
NSURL *url = [NSURL URLWithString:@"https://example.com/"];
[self.webView loadRequest:[NSURLRequest requestWithURL:url]];
} else {
}
return YES;
}
最佳答案
if([request.URL.relativeString isEqualToString:@"https://cheese.com/"]) {
}
关于ios - 如果在 UIWebview iOS 中加载,则重定向特定 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41567517/
我是一名优秀的程序员,十分优秀!