自动布局约束:如何使视图在调整大小时保持其宽度/高度比?

Auto-Layout Constraint: How to make a view maintains its width/height ratio when resized?(自动布局约束:如何使视图在调整大小时保持其宽度/高度比?)
本文介绍了自动布局约束:如何使视图在调整大小时保持其宽度/高度比?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在界面构建器中,我们可以固定高度、固定宽度,使两个视图的宽度相等,但是如何设置约束,以便在调整视图大小时,它保持其宽度/高度比?

In the interface builder we can pin height, pin width, make two views width equally, but how do I set the constraints so that when a view is being resized, it maintains its width/height ratio?

在我的特殊情况下,我的视图控制器中有一个 UIImageView.当视图调整大小时,我希望我的图像视图调整大小,但保持 3:2 的宽度:高度比.是否可以在 IB 中完成?用代码可以吗?

In my particular case, I have an UIImageView in my view controller. When the view resizes, I'd like my image view to resize, but maintain a 3:2 width:height ratio. Is it possible to do it in IB? Is it possible to do it with code?

谢谢!

推荐答案

您可以在 IB 中通过控件从视图拖动到自身并选择纵横比来添加纵横比约束.

You can add an aspect ratio constraint in IB by control dragging from the view to itself and choosing aspect ratio.

这篇关于自动布局约束:如何使视图在调整大小时保持其宽度/高度比?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

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菜单时获取事件)