我必须显示 3 个标签,例如
I have to show 3 Labels like
标签1 |标签2 |Label3 //横向
我希望这 3 个标签的宽度根据屏幕尺寸宽度等分
I want these 3labels width are equally divided according to Screen size width
如何直接使用 nib 文件实现这一点?
How can I achieve this with nib file directly?
谢谢
问题 2
标签1 |标签2 |标签3
Label1 | Label2 | Lable3
//所有标签宽度相等
//所有Label都是一个视图调用X视图的子视图
//All Labels are Subview of a view call X view
Label1 : 高度为 100
Label1 : height is 100
Label2 : 高度为 150
Label2 : height is 150
Label3 : 高度为 300
Label3 : height is 300
问:现在我希望 X 视图的高度为 max(100,150,300) = 300
只要给所有标签top、left、right、height和equalwidth
约束......
Just give top, left , right, height and equal width
constraints to all label....
这篇关于动态更改自动布局的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!