iPhone 3.0电话超链接无法取消?

时间:2009-07-07 14:58:04

标签: iphone uiwebview

我刚注意到自从升级到3.0元标签:

<meta name="format-detection" content="telephone=no" />

停止在我的应用程序中工作。我正在使用UIWebView,在升级之前一切正常。有任何想法吗?其他人有这个问题吗?

1 个答案:

答案 0 :(得分:1)

您是否尝试过为UIWebView设置UIDataDetectorType?

webView.dataDetectorTypes = UIDataDetectorTypeLink;

<强> UIDataDetectorTypes

定义可在基于文本的内容中检测到的信息类型。

<强>类型

  • UIDataDetectorTypePhoneNumber;
  • UIDataDetectorTypeLink;
  • UIDataDetectorTypeNone;
  • UIDataDetectorTypeAll;