如何在webView中检测HTML String中的任何链接? (苹果手机)

时间:2011-07-06 12:05:46

标签: iphone uiwebview hyperlink

如果我想要,我可以检测到webView中我的HTMLstring中出现的链接...我该怎么做?

我知道在IB中我们勾选了自动检测链接的框...但我想以编程方式知道

1 个答案:

答案 0 :(得分:4)

您检查了dataDetectorTypes属性吗?

例如使用此:

[[self content] setDataDetectorTypes: UIDataDetectorTypeAll];

您可以使用:

UIDataDetectorTypePhoneNumber
UIDataDetectorTypeLink
UIDataDetectorTypeAddress
UIDataDetectorTypeCalendarEvent
UIDataDetectorTypeNone
UIDataDetectorTypeAll

Reference-Link UIWebView