Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有人尝试更改 UITextView 中选定单词或句子的字体格式(粗体/斜体/颜色),例如文本编辑器应用程序?我一直在尝试这样做,但似乎格式仅适用于整个文本,而不适用于单个单词或句子。
您还可以更改任何特定的单词字体、样式和大小,
将 UITextView 文本设置为“Attributed”,默认为“Plain”,然后您可以对选定文本执行编辑。
UITextView无法设置文本片段的样式。样式、颜色和字体应用于整个文本。您可能希望使用 aUIWebView或 Core Text 来呈现您的文本。
UITextView
UIWebView