1.它用於UITextView和UIWebView,屬性名為:dataDetetorTypes
2.此屬性可以設定使符合電話、郵件、網址、符合格式的日期等文字變為鏈接文字。
3.電話號碼點擊後撥出電話,網址點擊後會用Safari打開,電子郵件會用mail打開,而符合格式的日期會彈出一個ActionSheet,有創建事件,在Calendar中顯示,和拷貝三個選項。
4.使用示例:
UITextView *textView = [[UITextView alloc] initWithFrame:CGRectMake(20, 20, 280, 200)];
textView.dataDetectorTypes = UIDataDetectorTypeAll;
textView.font = [UIFont systemFontOfSize:20];
textView.editable = NO;
textView.text = @"my phone nmuber is +8602980000000\r\n""my web site is www.xxxxxx.com.\r\n""my email-address is [email protected]""I WAS BORN IS 1009-09-02";
//添加文本視圖當視圖上
[self.view addSubview:textView];
效果如下: