Мы создали интерактивный текст в UITextView, используя этот код
var urlString = @"<a href=""https://www.google.com"" >Google</a>";
var documentAttributes = new NSAttributedStringDocumentAttributes { DocumentType = NSDocumentType.HTML };
NSError error = null;
var attributedString = new NSAttributedString(NSData.FromString(urlString, NSStringEncoding.UTF8), documentAttributes, ref error);
// Should really check the NSError before applying
MyTextView.AttributedText = attributedString;
, но по умолчанию отображается синий цвет для ссылки и подчеркнутого текста.Мы хотим изменить цвет текста, а также удалить подчеркивание.Пожалуйста, направьте / помогите мне реализовать это.