如何水平对齐下划线而不重复?

发布于 2024-12-08 17:08:52 字数 212 浏览 0 评论 0原文

我在每个表单字段和相关标签下方使用下划线字符,以在逻辑上分隔它们。我已经在 UILabel 中添加了下划线,但我正在寻找一种重复 _ 的方法,而无需在 IB 中标签的文本属性中手动键入多次。关于如何做到这一点有什么想法吗?

我尝试选中/取消选中“调整以适合”,但它不起作用。

感谢您帮助

斯蒂芬

I'm using an underscore character below each form field and related label in my view to logically seperate them. I've added the underscore in a UILabel but I'm looking for a way to repeat the _ without having to manually type it many times in the text property of the label in IB. Any idea on how to do this ?

I tried checking/unchecking "adjust to fit" but it's not working.

Thx for helping

Stephane

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你是我的挚爱i 2024-12-15 17:08:52

这是一个模糊的问题,但如果你想要一条线,我认为你应该插入带有模仿这条线的backgroundColor的通用UIView。

UIView *line = [[UIView alloc] initWithFrame:CGRectMake(linex, liney, thickness, length)];
line.backgroundColor = [UIColor blackColor];
[view addSubview:line];
[line release];

无论您如何看待这个问题,这都是比插入下垫更好的解决方案。

This is vague question, but if you want a line, I think you should rather insert generic UIView with backgroundColor that imitates the line.

UIView *line = [[UIView alloc] initWithFrame:CGRectMake(linex, liney, thickness, length)];
line.backgroundColor = [UIColor blackColor];
[view addSubview:line];
[line release];

No matter how you'd look at this, this is much better solution than inserting undersocres.

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