动态更改自动布局

change Auto Layout dynamically(动态更改自动布局)
本文介绍了动态更改自动布局的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我必须显示 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....

这篇关于动态更改自动布局的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Why local notification is not firing for UNCalendarNotificationTrigger(为什么没有为UNCalendarNotificationTrigger触发本地通知)
iOS VoiceOver functionality changes with Bundle Identifier(IOS画外音功能随捆绑包标识符而变化)
tabbar middle tab out of tabbar corner(选项卡栏中间的选项卡角外)
Pushing UIViewController above UITabBar(将UIView控制器推送到UITabBar上方)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
Get an event when UIBarButtonItem menu is displayed(显示UIBarButtonItem菜单时获取事件)