uiLabel 文本中的单词之间存在较大间隙
我制作了一个 uiLabel,其中只有一个单词作为文本/标题。标签很长并且转了 90 度。它被添加到滚动视图中,以便您最终可以看到全部内容。
我的问题是;我的文字居中,所以我只有在向下滚动一段时间后才能看到这个词。我需要 .text 字符串中该单词的多个副本,并且它们之间有很大的空格,这样我大多数时候都可以在屏幕上看到该单词。
有没有一种很好的格式可以像这样将单词“分开”,而不必输入数百个空格?
例如 @"标签标题 /大空格/ 标签标题 /大空格/ 标签标题 /大空格/ 标签标题”
I have made a uiLabel with a one single word as the text/title. The label is very long and turned 90 deg. It is added to a scrollView so you can see it all eventually.
My problem is; my text is centred, so i only see the word after scrolling down for a while. I need multiple copies of the word in my .text string with nice big spaces between them, so I can see the word on screen most of the time.
Is there a nice format to 'push' words apart like this without having to type in hundreds of spaces?
e.g. @"Label Title /big space/ Label Title /big space/ Label Title /big space/ Label Title"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有一个主意。您可以使用以下命令初始化用于设置标题的
NSString
变量I have got an idea. You can initialize the
NSString
variable used to set the title by using