我对UITextView
有疑问。我正在使用属性文本,并且已经设置UITextAutocapitalizationTypeSentences
以大写每个句子的第一个字母。但是,每个句子的第一个单词都大写。我该如何解决?
文本处理很多,但初始设置如下:
var _attributedString = new NSMutableAttributedString(text, new CoreText.CTStringAttributes());
TextView.Font = UIFont.SystemFontOfSize(17, UIFontWeight.Medium);
TextView.AttributedText = _attributedString;
TextView.AutocapitalizationType = UITextAutocapitalizationType.Sentences;
TextView.Editable = true;
TextView.Selectable = true;