IOS 如何将一个视图添加到另一个视图旁边?

发布于 2024-12-02 05:18:07 字数 88 浏览 1 评论 0原文

我有这样的情况 我想在 UILabel 旁边动态添加一个 UILabel。 但是第二个标签的位置取决于第一个标签的字符串长度,该长度不是固定的。 如何做到这一点?

I have a situation like this
I want to add a UILabel next to an UILabel dynamically.
But the position of the 2nd label depends on the length of the string of the 1st label which is not fixed.
How to do this?

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

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

发布评论

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

评论(1

一身仙ぐ女味 2024-12-09 05:18:07

将新文本设置到第一个标签后,访问标签的 frame 属性。
第二个标签的位置为:

CGRect f = firstLabel.frame;
CGRect f2 = CGRectMake(f.origin.x + f.size.width,
                       f.origin.y,
                       theWidthYouWant,
                       f.size.height);
secondLabel.frame = f2;

第二个标签现在位于第一个标签旁边。

如果要向容器视图添加新标签,请使用 initWithFrame: 初始化程序和上面的计算框架。

Once you set the new text to the first label, access frame property of your label.
The position for the second label would be :

CGRect f = firstLabel.frame;
CGRect f2 = CGRectMake(f.origin.x + f.size.width,
                       f.origin.y,
                       theWidthYouWant,
                       f.size.height);
secondLabel.frame = f2;

The second label is now next to the first.

If you want to add a new label to the container view, use initWithFrame: initializer with the computed frame above.

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