uiLabel 文本中的单词之间存在较大间隙

发布于 2024-10-16 23:05:52 字数 342 浏览 3 评论 0原文

我制作了一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我们只是彼此的过ke 2024-10-23 23:05:52

我有一个主意。您可以使用以下命令初始化用于设置标题的 NSString 变量

[[NSString alloc] intiWithFormat:@"%@    %@      %@      %@", string1,string2,string3 string4];

I have got an idea. You can initialize the NSString variable used to set the title by using

[[NSString alloc] intiWithFormat:@"%@    %@      %@      %@", string1,string2,string3 string4];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文