如何从 UILabel 的文本中删除制表符间距
我正在从本地 xml 文件读取一些文本并将其显示在 UILabel 中。 xml 中的文本最初具有制表符间距。我在编辑器中手动删除了此选项卡,但它仍然显示在 UILabel 中,并且它使文本布局看起来非常混乱。
我该如何解决这个问题?
I'm reading some text from a local xml file and displaying it in a UILabel. The text in the xml initially had tabbed spacing in it. I removed this tabbing manually in the editor but it's still showing up in the UILabel and it makes the text layout look very messy.
How can I resolve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试以下
Try with below
当您将文本分配给标签时,您可以执行以下操作:
这将完全删除选项卡。
When you assign the text to your label you can do this:
This will remove the tabs completely.
NSString 类参考
NSString Class Reference