recently i ran into a problem , the meta tag
<meta name="format-detection" content="telephone=no">
does NOT work in mainscreen shotcut , or UIWebView. As a result, the numbers in my webapp became clickable.you have to add some obj-c code the disable this feature.
/**
Called when the webview finishes loading.
This stops the activity view and closes the imageview
*/
- (void)webViewDidFinishLoad:(UIWebView *)theWebView
{
theWebView.dataDetectorTypes = UIDataDetectorTypeNone;
return [ super webViewDidFinishLoad:theWebView ];
}
I didn’t find any solution in mainscreen shotcut.
Read more »