Created
February 9, 2011 18:57
-
-
Save mwbrooks/819020 to your computer and use it in GitHub Desktop.
Disable telephone number detection in PhoneGap-iOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
- (void)webViewDidStartLoad:(UIWebView *)theWebView | |
{ | |
// disable telephone detection, basically <meta name="format-detection" content="telephone=no" /> | |
theWebView.dataDetectorTypes = UIDataDetectorTypeAll ^ UIDataDetectorTypePhoneNumber; | |
return [ super webViewDidStartLoad:theWebView ]; | |
} | |
// ... |
erp, yes OR
The following seems to work fine for me with XCode 4.3, iOS 5.0.1 and PhoneGap 1.4.1 =)
theWebView.dataDetectorTypes = UIDataDetectorTypeAll & ! UIDataDetectorTypePhoneNumber;
shanesmith's code worked fine for me as well. Tested it on Xcode 4.5.2, iOS 6 & PhoneGap 1.4.1
You can also disable telephone number highlighting using this meta tag.
meta name="format-detection" content="telephone=no"
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Did some tests:
Changing compilers to LLVM only, GCC only or LLVM+GCC does not help.
The warning happens in the synthesized function for dataDetectorTypes (more likely it was not synthesized but an explicit function that they constructed setDataDetectorTypes where they do custom verification stuff) which is unfortunately opaque to us. It is best to bitwise OR the values to combine them - setDataDetectorTypes just doesn't like the XORed number somehow.