We have created a clickable text in UITextView by using this code
var urlString = @\"Google\";
You can change these properties just adding UIStringAttributeKey.ForegroundColor and UIStringAttributeKey.UnderlineStyl to your dictionary and set it to WeakLinkTextAttributes property
var key1 = UIStringAttributeKey.ForegroundColor;
var value1 = UIColor.Red;
var key2 = UIStringAttributeKey.UnderlineStyle;
var value2 = new NSNumber(0); // 0 without underline 1 with underline
var dict = new NSDictionary(key1, value1, key2, value2);
var urlString = @"Google";
var documentAttributes = new NSAttributedStringDocumentAttributes {
DocumentType = NSDocumentType.HTML };
NSError error = null;
var attributedString = new NSAttributedString(NSData.FromString(urlString, NSStringEncoding.UTF8), documentAttributes, ref error);
yourTextView.AttributedText = attributedString;
yourTextView.WeakLinkTextAttributes = dict;