IOS 如何将一个视图添加到另一个视图旁边?
我有这样的情况 我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将新文本设置到第一个标签后,访问标签的
frame
属性。第二个标签的位置为:
第二个标签现在位于第一个标签旁边。
如果要向容器视图添加新标签,请使用
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 :
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.