views:

142

answers:

1

Hi everyone, is there a way to change hyperlink color in situations when UITextView and, for example,

.dataDetectorTypes = UIDataDetectorTypePhoneNumber;

are used?

Thanks in advance!

A: 

Unfortunately, there is no way to do this with a UITextView. The only way to have control over the hyperlink color would be to use a UIWebView, where you could use CSS in a manner similar to this example.

Mike