Как сделать отображение blockquote в NSAttributedString ?
В UITextField не работает стиль "border-left:3px solid black;".
NSString *testString = @"<style>\n"
".quote {\n"
"border-left:3px solid black;\n"
"}\n"
"</style>\n"
"<body>\n"
" <div class=\"quote\"><div>This is a quote</div></div>\n"
" <br/>\n"
" Bla bla bla\n"
"</body>";
NSAttributedString *attributedString = [[NSAttributedString alloc] initWithData:[testString dataUsingEncoding:NSUnicodeStringEncoding] options:@{ NSDocumentTypeDocumentAttribute: NSHTMLTextDocumentType } documentAttributes:nil error:nil];
self.messageLabel.attributedText = attributedString;
p.s.
UIWebView не предлагать, так как нужна возможность редактирования текста.