我在 web View 中有这个 bool 函数,它检查关键字“youtube”,如果链接中有关键字“youtube”,它将在应用程序 web View 而不是 safari 中打开。这可以正常工作,但是有一个我遇到的问题。如果 youtube 链接被 https://bitly.com/ 缩短它将在 Safari 中打开。有没有办法防止这种情况。我仍然需要 https://bitly.com/在 Safari 中为除 youtube 之外的所有其他关键字打开。
-(BOOL) webViewUIWebView *)inWeb shouldStartLoadWithRequestNSURLRequest *)inRequest navigationTypeUIWebViewNavigationType)inType {
if ( inType == UIWebViewNavigationTypeLinkClicked ) {
if ([[inRequest.URL absoluteString] rangeOfString"youtube"].location==NSNotFound){
[[UIApplication sharedApplication] openURL:[inRequest URL]];
return NO;
}
}
return YES;
}
Best Answer-推荐答案 strong>
您可以使用 knowurl从微小的缩短链接扩展原始 URL 的服务
- (BOOL)webViewUIWebView *)inWeb shouldStartLoadWithRequestNSURLRequest *)inRequest navigationTypeUIWebViewNavigationType)inType
{
@try
{
BOOL _returnVal = YES;
//convert your bitly url to KowUrl if its contains `bit.ly`
if ( inType == UIWebViewNavigationTypeLinkClicked )
{
if ([[inRequest.URL absoluteString] rangeOfString"youtube"].location==NSNotFound)
{
[[UIApplication sharedApplication] openURL:[inRequest URL]];
_returnVal = NO;
}
}
}
@catch (NSException *exception)
{
NSLog(@"%s\n exception: Name- %@ Reason->%@", __PRETTY_FUNCTION__,[exception name],[exception reason]);
}
@finally
{
return loadedImages;
}
}
关于iOS - 在 UIWebView 中处理重定向,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/15347444/
|