UITextView /UIWebView 电话 地址等增加下划线


给特定内容增加 下划线

 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 number is 15852509846 \r\n"
    "My personal web site www.xxxxxx.com.\r\n"
    "My E-mail address is [email protected].\r\n"
    "I was born in 1900-01-01.";
    [self.view addSubview:textView];
    [textView release];


你可能感兴趣的:(UITextView /UIWebView 电话 地址等增加下划线)