- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
这是对 this question 的重新表述
当我设置 myWebView.dataDetectorTypes = UIDataDetectorTypeNone; 电话链接(在 href html 标签中)是这样处理的:
如何使用 shouldStartLoadWithRequest 委托(delegate)方法来处理电话链接?
最佳答案
我还没有找到问题的原因,但我找到了解决方案。
我没有像这样在 anchor 中写电话链接 tel:myphonenumber,而是写 allo:myphonenumber。
因此,shouldStartLoadWithRequest 方法被调用。我可以在我的 NSURLRequest
对象中用 tel: 替换 allo:。
编辑,这里是代码:
- (BOOL)webView:(UIWebView *)webView
shouldStartLoadWithRequest:(NSURLRequest *)request
navigationType:(UIWebViewNavigationType)navigationType; {
NSURL *requestURL = [[ request URL] retain];
// Check to see what protocol/scheme the requested URL is.
if (
// ( [ [ requestURL scheme ] isEqualToString: @"http" ] || [ [ requestURL scheme ] isEqualToString: @"https" ] ) &&
( navigationType == UIWebViewNavigationTypeLinkClicked )
) {
// Stats
[self recordTouch: [self tagToZone:[[webView superview] tag]]];
// Substitution allo -> tel
NSURL *newURL = [[NSURL alloc] initWithString: [[[request URL] absoluteString] stringByReplacingOccurrencesOfString: @"allo:" withString: @"tel:"]];
[requestURL release];
//return YES;
// Launch
return ![ [ UIApplication sharedApplication ] openURL: [newURL autorelease]];
}
// Auto release
[requestURL release];
return YES;
}
关于iphone - dataDetectorTypes 电话链接问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1984883/
这是对 this question 的重新表述 当我设置 myWebView.dataDetectorTypes = UIDataDetectorTypeNone; 电话链接(在 href html
在 UIWebView 中,将 UIDataDetectorTypes 添加到 View 相当容易: myUIWebView.dataDetectorTypes = UIDataDetectorTyp
我有一个黑色背景的 UIWebView,我希望 dataDectectorType 自动检测到的电话号码以白色显示,但我找不到将其从默认蓝色更改的方法。 有没有人曾经处理过这个问题? 提前致谢。 最佳
我想更改 UIWebView 中的所有 dataDetectorType 颜色,包括 PhoneNo 、 emailID 、 Calendar 和每个 dataDetectorType 。我还需要该
当启用 UITextView dataDetectorTypes 时,文本中的所有链接看起来都是可点击的。但是任何像 ( http://bit.ly/link) 这样的“短链接”都是不可点击的(即使
theTweet = [[[UITextView alloc] initWithFrame:CGRectMake(65, 10, 225, 65)] autorelease]; theTwee
我正在尝试创建一个可编辑且具有可点击网址的 TextInput 组件。根据 react native docs,仅当 editable={false} 时才支持 dataDetectorTypes 属
我是一名优秀的程序员,十分优秀!