iOSアプリ内でHTMLをMobile Safariを使って表示させる際に、数字が勝手にリンクされる場合があります。そういう場合は、HTMLのHeaderに、<meta name = "format-detection" content = "telephone=no"> を挿入する事で防げるそうです。metaタグを使った場合でも、telのURIスキーマを使えば、再びリンクできるそうです。

- iOS Development Library: Phone Links
http://developer.apple.com/library/ios/#featuredarticles/iPhoneURLScheme_Reference/Articles/PhoneLinks.html

- Stackoverflow: How to disable phone number linking in Mobile Safari?
http://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari


ところが、上記をTitaniumでやってみたのですが、うまくリンクが外れませんでした。
Titaniumの場合は、autoDetect=[] をWebViewに設定しなければならないようです。設定したらうまくいきました。

- Turning off format detection on the iPhone
http://jira.appcelerator.org/browse/TIMOB-1912

例:
var web = Ti.UI.createWebView({
    url:'test.html',
    autoDetect: null
});