Hi everyone, is there a way to change hyperlink color in situations when UITextView and, for example,
.dataDetectorTypes = UIDataDetectorTypePhoneNumber;
are used?
Thanks in advance!
Hi everyone, is there a way to change hyperlink color in situations when UITextView and, for example,
.dataDetectorTypes = UIDataDetectorTypePhoneNumber;
are used?
Thanks in advance!
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.