更改textView中的字体样式?
如何在 Xcode 的 textView 中将标题文本的字体样式更改为 粗体 或 斜体?
另外,我怎样才能只对textView中的一些单词执行此操作?
How can I change the font style of the header text to bold or italic in textView in Xcode?
Also, how can I do this for only some of the words in textView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简而言之,您现在无法在
UITextView
中执行此操作。如果没有用户交互,请考虑UIWebView
。实际上,您应该阅读此
。In short you can't do that in
UITextView
right now. If there is no user interaction, considerUIWebView
. Actually, you should just readthis
.回答第二个问题:“我怎样才能只对textView中的某些单词执行此操作?”
您可以在属性检查器中将“文本”从普通更改为属性。通过右键单击,您可以将选定的单词更改为粗体或斜体等。
Answer to the second queston:"how can I do this for only some of the words in textView?"
You can change "Text" from plain to attributed in the attribute inspector. with a right click you can change a selected word in bold or italic etc.