quot;Width equals heightquot; constraint in Interface Builder(“宽度等于高度Interface Builder 中的约束)
问题描述
我找不到在 Interface Builder 中创建方形"约束的方法,即宽度等于高度".我想有可能以编程方式添加这样的约束.IB有什么我可以做的吗?也许我只是没看到?看似微不足道,却找不到.
I can't find a way to create a 'square' constraint, meaning 'width equals height' in Interface Builder. I guess it's possible to add such constraint programmatically. Is there something I can do in IB? Maybe I just don't see it? It seems trivial, yet I can't find it.
推荐答案
更新 Xcode 5.1b5
Ctrl+单击并从视图中拖动并在指针位于视图上方时释放.选择纵横比".它将创建一个约束,其中第一项和第二项是视图.
Ctrl+click and drag from a view and release while the pointer is over the view. Select "Aspect Ratio". It will create a constraint where the first and second item is the view.
Xcode 5.1 之前
你不能因为宽度/高度编辑器缺少与另一个属性相关的字段或设置比率:
You can't because the width/height editor lacks the fields to relate to another property or set the ratio:
因此,您无法在 Interface Builder 中表达以下代码:
Therefore, you can't express the following code in Interface Builder:
CGFloat ratio = 1.0;
NSLayoutConstraint *constraint = [NSLayoutConstraint
constraintWithItem:myView
attribute:NSLayoutAttributeWidth
relatedBy:NSLayoutRelationEqual
toItem:myView
attribute:NSLayoutAttributeHeight
multiplier:ratio
constant:0];
constraint.priority = 1000;
[myView.superview addConstraint:constraint];
这篇关于“宽度等于高度"Interface Builder 中的约束的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:“宽度等于高度"Interface Builder 中的约束
基础教程推荐
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01