首页 > 其他 > 详细

使用UIDataDetectorTypes自动检测电话、网址和邮箱

时间:2016-02-24 19:23:31      阅读:181      评论:0      收藏:0      [点我收藏+]

1.webView里如果有电话号码的话,设置这个熟悉可以点击拨打
webView.dataDetectorTypes = UIDataDetectorTypePhoneNumber;//自动检测网页上的电话号码,单击可以拨打

接下来我们来简单讲一下,使用UIDataDetectorTypes自动检测电话、网址和邮箱。我们先来看看UIDataDetectorTypes有哪些枚举值。

UIDataDetectorTypes的枚举值

typedef NS_OPTIONS(NSUInteger, UIDataDetectorTypes) {
    UIDataDetectorTypePhoneNumber   = 1 << 0,          // 检测电话
    UIDataDetectorTypeLink          = 1 << 1,          // 检测邮箱和网址    

#if __IPHONE_4_0 <= __IPHONE_OS_VERSION_MAX_ALLOWED UIDataDetectorTypeAddress = 1 << 2, // Street address detection UIDataDetectorTypeCalendarEvent = 1 << 3, // Event detection #endif UIDataDetectorTypeNone = 0, // No detection at all UIDataDetectorTypeAll = NSUIntegerMax // 检测电话、网址和邮箱 };
2.UIWebView有dataDetectorTypes属性,UITextView也有dataDetectorTypes属性。
具体详细:http://www.superqq.com/blog/2015/07/09
/shi-yong-uidatadetectortypeszi-dong-jian-ce-dian-hua-,-wang-zhi-he-you-xiang
/?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io

使用UIDataDetectorTypes自动检测电话、网址和邮箱

原文:http://www.cnblogs.com/MJP334414/p/5213826.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!