我在Interface Builder的容器视图内有一个子视图。子视图具有一些我要尊重的固有长宽比。容器视图的大小直到运行时才未知。
如果容器视图的宽高比大于子视图,则我希望子视图的高度等于父视图的高度。
如果容器视图的长宽比高于子视图,则我希望子视图的宽度等于父视图的宽度。
无论哪种情况,我都希望子视图在容器视图内水平和垂直居中。
是否可以使用Xcode 6或早期版本中的AutoLayout约束来实现此目的?理想情况下使用Interface Builder,但如果不是这样,则可以通过程序定义此类约束。
#1 楼
您不是在描述适合的比例;您正在描述方面适合。 (在这方面,我已经对您的问题进行了编辑。)子视图将在保持其纵横比并完全适合其父级的同时变得尽可能大。无论如何,您都可以使用自动布局来实现。从Xcode 5.1开始,您可以完全在IB中完成此操作。让我们从一些视图开始:
浅绿色视图的纵横比为4:1。深绿色视图的纵横比为1:4。我将设置约束,以使蓝色视图填充屏幕的上半部分,粉红色视图填充屏幕的下半部分,每个绿色视图尽可能扩大,同时保持其长宽比并适合其container。
首先,我将在蓝色视图的所有四个侧面上创建约束。我将其固定到距离每条边最近的邻居,距离为0。确保关闭边距:
请注意,我没有更新框架呢。我发现在设置约束时在视图之间留出空间比较容易,只需手动将常量设置为0(或其他任何值)。
接下来,我固定视图的左,下和右边缘到最近的邻居的粉红色视图。我不需要设置顶部边缘约束,因为它的顶部边缘已经约束到了蓝色视图的底部边缘。
我还需要一个等号-粉色和蓝色视图之间的高度限制。这将使它们每个占满整个屏幕的一半:
如果我告诉Xcode现在更新所有帧,我会得到:
所以我到目前为止设置的约束是正确的。我撤消了这一点,然后开始在浅绿色视图上进行操作。
对浅绿色视图进行宽高比拟合需要五个约束:
必需优先级宽高比约束在浅绿色的视图上。您可以使用Xcode 5.1或更高版本在xib或情节提要中创建此约束。
将浅绿色视图的宽度限制为小于或等于其容器宽度的必要优先级约束。
将浅绿色视图的宽度设置为等于其宽度的高优先级约束
将浅绿色视图的高度限制为小于或等于其容器的高度的必需优先级约束。
设置浅绿色视图的高度的高优先级约束等于其容器的高度。
让我们考虑两个宽度约束。小于或等于约束本身不足以确定浅绿色视图的宽度。许多宽度将适合约束。由于存在歧义,因此自动布局将尝试选择一种解决方案,以最小化其他(高优先级但不是必需)约束中的错误。最小化误差意味着使宽度尽可能接近容器的宽度,同时又不违反所需的小于或等于约束。
高度约束也会发生同样的情况。并且由于还需要长宽比约束,因此它只能沿一个轴最大化子视图的大小(除非容器碰巧具有与子视图相同的长宽比)。
所以首先创建长宽比约束:
然后我用容器创建相等的宽度和高度约束:
我需要将这些约束编辑为小于或等于约束:
接下来,我需要创建另一组宽度和高度相等的约束容器:
我需要使这些新约束小于所需的优先级:
最后,您要求子视图以其容器为中心,因此我将设置这些约束:
现在,要测试,我将选择视图控制器,并要求Xcode更新所有框架。这就是我得到的:
糟糕!子视图已扩展为完全填充其容器。如果选择它,我可以看到它实际上保持了宽高比,但是它是在进行宽高比填充而不是宽高比拟合。
问题是,在小于或小于-equal约束,重要的是在约束的每一端都有哪个视图,并且Xcode设置了与我期望相反的约束。我可以选择两个约束中的每个约束并颠倒其第一和第二项。相反,我只选择子视图并将约束更改为大于或等于:
Xcode更新布局:
<现在,我对底部的深绿色视图执行所有相同的操作。我需要确保其长宽比为1:4(Xcode以一种奇怪的方式调整了它的大小,因为它没有约束)。由于它们相同,因此不再显示步骤。结果如下:
现在我可以在iPhone 4S模拟器中运行它了,它的屏幕尺寸与所用的IB不同,并且可以测试旋转度:
我可以在iPhone 6模拟器中进行测试:
我已将最终的故事板上传到此为方便起见。
#2 楼
Rob,您的答案太棒了!我也知道这个问题专门针对通过使用自动布局实现这一点。但是,作为参考,我想展示如何在代码中完成此操作。就像Rob展示的那样,您可以设置顶视图和底视图(蓝色和粉红色)。然后创建一个自定义
AspectFitView
:AspectFitView.h:
#import <UIKit/UIKit.h>
@interface AspectFitView : UIView
@property (nonatomic, strong) UIView *childView;
@end
AspectFitView.m:
#import "AspectFitView.h"
@implementation AspectFitView
- (void)setChildView:(UIView *)childView
{
if (_childView) {
[_childView removeFromSuperview];
}
_childView = childView;
[self addSubview:childView];
[self setNeedsLayout];
}
- (void)layoutSubviews
{
[super layoutSubviews];
if (_childView) {
CGSize childSize = _childView.frame.size;
CGSize parentSize = self.frame.size;
CGFloat aspectRatioForHeight = childSize.width / childSize.height;
CGFloat aspectRatioForWidth = childSize.height / childSize.width;
if ((parentSize.height * aspectRatioForHeight) > parentSize.height) {
// whole height, adjust width
CGFloat width = parentSize.width * aspectRatioForWidth;
_childView.frame = CGRectMake((parentSize.width - width) / 2.0, 0, width, parentSize.height);
} else {
// whole width, adjust height
CGFloat height = parentSize.height * aspectRatioForHeight;
_childView.frame = CGRectMake(0, (parentSize.height - height) / 2.0, parentSize.width, height);
}
}
}
@end
接下来,您将情节提要中的蓝色和粉红色视图的类更改为
AspectFitView
。最后,为您的视图控制器topAspectFitView
和bottomAspectFitView
设置两个插座,并在childView
中设置它们的viewDidLoad
:- (void)viewDidLoad {
[super viewDidLoad];
UIView *top = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 500, 100)];
top.backgroundColor = [UIColor lightGrayColor];
UIView *bottom = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 500)];
bottom.backgroundColor = [UIColor greenColor];
_topAspectFitView.childView = top;
_bottomAspectFitView.childView = bottom;
}
所以在代码中做到这一点并不难,而且仍然非常适应性强,并可以使用大小可变的视图和不同的宽高比。
2015年7月更新:在此处找到演示应用程序:https://github.com/jfahrenkrug/SPWKAspectFitView
评论
也非常有编程参考。
–ctpenrose
2014年12月11日的1:05
@JohannesFahrenkrug如果您有辅导项目,可以分享吗?谢谢 :)
– Erhan Demirci
15年7月17日在10:55
@ErhanDemirci当然,你去了:github.com/jfahrenkrug/SPWKAspectFitView
–约翰内斯·法伦克鲁格(Johannes Fahrenkrug)
15年7月17日在13:06
#3 楼
这是针对macOS的。我很难使用Rob的方法来实现OS X应用程序的外观适合。但是我用另一种方法做到了-我没有使用宽度和高度,而是使用前导,尾随,顶部和底部空间。
基本上,添加两个前导空格,其中一个>> 0 @ 1000优先级,另一个是= 0 @ 250低优先级。对尾部,顶部和底部空间进行相同的设置。
当然,您需要设置宽高比以及中心X和中心Y。
然后完成工作!
/>
评论
您将如何以编程方式进行此操作?
–FateNuller
17年2月1日在20:07
@FateNuller只是按照步骤进行?
–brianLikeApple
17年2月2日,0:32
为了简单明了,实际上应该接受此答案。也适用于iOS。
– m8labs
20 Dec 17 '13:07
#4 楼
我需要一个可接受的答案的解决方案,但需要从代码中执行。我发现的最优雅的方法是使用Masonry框架。#import "Masonry.h"
...
[view mas_makeConstraints:^(MASConstraintMaker *make) {
make.width.equalTo(view.mas_height).multipliedBy(aspectRatio);
make.size.lessThanOrEqualTo(superview);
make.size.equalTo(superview).with.priorityHigh();
make.center.equalTo(superview);
}];
#5 楼
我发现自己想要宽高比填充行为,以便UIImageView保持其自己的宽高比并完全填充容器视图。令人困惑的是,我的UIImageView打破了高优先级的等宽和等高约束(如Rob的回答所述),并以全分辨率呈现。解决方案只是设置UIImageView的内容压缩抗性优先级低于等宽和等高约束的优先级:
#6 楼
这是@rob_mayoff对以代码为中心的方法的出色回答的一部分,它使用NSLayoutAnchor
对象并移植到Xamarin。对我来说,NSLayoutAnchor
和相关类使AutoLayout的编程更加容易:public class ContentView : UIView
{
public ContentView (UIColor fillColor)
{
BackgroundColor = fillColor;
}
}
public class MyController : UIViewController
{
public override void ViewDidLoad ()
{
base.ViewDidLoad ();
//Starting point:
var view = new ContentView (UIColor.White);
blueView = new ContentView (UIColor.FromRGB (166, 200, 255));
view.AddSubview (blueView);
lightGreenView = new ContentView (UIColor.FromRGB (200, 255, 220));
lightGreenView.Frame = new CGRect (20, 40, 200, 60);
view.AddSubview (lightGreenView);
pinkView = new ContentView (UIColor.FromRGB (255, 204, 240));
view.AddSubview (pinkView);
greenView = new ContentView (UIColor.Green);
greenView.Frame = new CGRect (80, 20, 40, 200);
pinkView.AddSubview (greenView);
//Now start doing in code the things that @rob_mayoff did in IB
//Make the blue view size up to its parent, but half the height
blueView.TranslatesAutoresizingMaskIntoConstraints = false;
var blueConstraints = new []
{
blueView.LeadingAnchor.ConstraintEqualTo(view.LayoutMarginsGuide.LeadingAnchor),
blueView.TrailingAnchor.ConstraintEqualTo(view.LayoutMarginsGuide.TrailingAnchor),
blueView.TopAnchor.ConstraintEqualTo(view.LayoutMarginsGuide.TopAnchor),
blueView.HeightAnchor.ConstraintEqualTo(view.LayoutMarginsGuide.HeightAnchor, (nfloat) 0.5)
};
NSLayoutConstraint.ActivateConstraints (blueConstraints);
//Make the pink view same size as blue view, and linked to bottom of blue view
pinkView.TranslatesAutoresizingMaskIntoConstraints = false;
var pinkConstraints = new []
{
pinkView.LeadingAnchor.ConstraintEqualTo(blueView.LeadingAnchor),
pinkView.TrailingAnchor.ConstraintEqualTo(blueView.TrailingAnchor),
pinkView.HeightAnchor.ConstraintEqualTo(blueView.HeightAnchor),
pinkView.TopAnchor.ConstraintEqualTo(blueView.BottomAnchor)
};
NSLayoutConstraint.ActivateConstraints (pinkConstraints);
//From here, address the aspect-fitting challenge:
lightGreenView.TranslatesAutoresizingMaskIntoConstraints = false;
//These are the must-fulfill constraints:
var lightGreenConstraints = new []
{
//Aspect ratio of 1 : 5
NSLayoutConstraint.Create(lightGreenView, NSLayoutAttribute.Height, NSLayoutRelation.Equal, lightGreenView, NSLayoutAttribute.Width, (nfloat) 0.20, 0),
//Cannot be larger than parent's width or height
lightGreenView.WidthAnchor.ConstraintLessThanOrEqualTo(blueView.WidthAnchor),
lightGreenView.HeightAnchor.ConstraintLessThanOrEqualTo(blueView.HeightAnchor),
//Center in parent
lightGreenView.CenterYAnchor.ConstraintEqualTo(blueView.CenterYAnchor),
lightGreenView.CenterXAnchor.ConstraintEqualTo(blueView.CenterXAnchor)
};
//Must-fulfill
foreach (var c in lightGreenConstraints)
{
c.Priority = 1000;
}
NSLayoutConstraint.ActivateConstraints (lightGreenConstraints);
//Low priority constraint to attempt to fill parent as much as possible (but lower priority than previous)
var lightGreenLowPriorityConstraints = new []
{
lightGreenView.WidthAnchor.ConstraintEqualTo(blueView.WidthAnchor),
lightGreenView.HeightAnchor.ConstraintEqualTo(blueView.HeightAnchor)
};
//Lower priority
foreach (var c in lightGreenLowPriorityConstraints)
{
c.Priority = 750;
}
NSLayoutConstraint.ActivateConstraints (lightGreenLowPriorityConstraints);
//Aspect-fit on the green view now
greenView.TranslatesAutoresizingMaskIntoConstraints = false;
var greenConstraints = new []
{
//Aspect ratio of 5:1
NSLayoutConstraint.Create(greenView, NSLayoutAttribute.Height, NSLayoutRelation.Equal, greenView, NSLayoutAttribute.Width, (nfloat) 5.0, 0),
//Cannot be larger than parent's width or height
greenView.WidthAnchor.ConstraintLessThanOrEqualTo(pinkView.WidthAnchor),
greenView.HeightAnchor.ConstraintLessThanOrEqualTo(pinkView.HeightAnchor),
//Center in parent
greenView.CenterXAnchor.ConstraintEqualTo(pinkView.CenterXAnchor),
greenView.CenterYAnchor.ConstraintEqualTo(pinkView.CenterYAnchor)
};
//Must fulfill
foreach (var c in greenConstraints)
{
c.Priority = 1000;
}
NSLayoutConstraint.ActivateConstraints (greenConstraints);
//Low priority constraint to attempt to fill parent as much as possible (but lower priority than previous)
var greenLowPriorityConstraints = new []
{
greenView.WidthAnchor.ConstraintEqualTo(pinkView.WidthAnchor),
greenView.HeightAnchor.ConstraintEqualTo(pinkView.HeightAnchor)
};
//Lower-priority than above
foreach (var c in greenLowPriorityConstraints)
{
c.Priority = 750;
}
NSLayoutConstraint.ActivateConstraints (greenLowPriorityConstraints);
this.View = view;
view.LayoutIfNeeded ();
}
}
#7 楼
也许这是Masonry的最短答案,它也支持长宽比填充和拉伸。typedef NS_ENUM(NSInteger, ContentMode) {
ContentMode_aspectFit,
ContentMode_aspectFill,
ContentMode_stretch
}
// ....
[containerView addSubview:subview];
[subview mas_makeConstraints:^(MASConstraintMaker *make) {
if (contentMode == ContentMode_stretch) {
make.edges.equalTo(containerView);
}
else {
make.center.equalTo(containerView);
make.edges.equalTo(containerView).priorityHigh();
make.width.equalTo(content.mas_height).multipliedBy(4.0 / 3); // the aspect ratio
if (contentMode == ContentMode_aspectFit) {
make.width.height.lessThanOrEqualTo(containerView);
}
else { // contentMode == ContentMode_aspectFill
make.width.height.greaterThanOrEqualTo(containerView);
}
}
}];
#8 楼
我找不到任何现成的完全编程解决方案,所以这是我在Swift 5中对视图的外观填充扩展的看法: extension UIView {
public enum FillingMode {
case full(padding:Int = 0)
case aspectFit(ratio:CGFloat)
// case aspectFill ...
}
public func addSubview(_ newView:UIView, withFillingMode fillingMode:FillingMode) {
newView.translatesAutoresizingMaskIntoConstraints = false
addSubview(newView)
switch fillingMode {
case let .full(padding):
let cgPadding = CGFloat(padding)
NSLayoutConstraint.activate([
newView.leadingAnchor.constraint(equalTo: leadingAnchor, constant: cgPadding),
newView.trailingAnchor.constraint(equalTo: trailingAnchor, constant: -cgPadding),
newView.topAnchor.constraint(equalTo: topAnchor, constant: cgPadding),
newView.bottomAnchor.constraint(equalTo: bottomAnchor, constant: -cgPadding)
])
case let .aspectFit(ratio):
guard ratio != 0 else { return }
NSLayoutConstraint.activate([
newView.centerXAnchor.constraint(equalTo: centerXAnchor),
newView.centerYAnchor.constraint(equalTo: centerYAnchor),
newView.leadingAnchor.constraint(greaterThanOrEqualTo: leadingAnchor),
newView.leadingAnchor.constraint(equalTo: leadingAnchor).usingPriority(900),
newView.trailingAnchor.constraint(lessThanOrEqualTo: trailingAnchor),
newView.trailingAnchor.constraint(equalTo: trailingAnchor).usingPriority(900),
newView.topAnchor.constraint(greaterThanOrEqualTo: topAnchor),
newView.topAnchor.constraint(equalTo: topAnchor).usingPriority(900),
newView.bottomAnchor.constraint(lessThanOrEqualTo: bottomAnchor),
newView.bottomAnchor.constraint(equalTo: bottomAnchor).usingPriority(900),
newView.heightAnchor.constraint(equalTo: newView.widthAnchor, multiplier: CGFloat(ratio)),
])
}
}
}
这是优先级扩展(来自另一个线程,但是我用1 ... 1000之间的某些模式匹配来“保护它”:
extension NSLayoutConstraint {
/// Returns the constraint sender with the passed priority.
///
/// - Parameter priority: The priority to be set.
/// - Returns: The sended constraint adjusted with the new priority.
func usingPriority(_ priority: Int) -> NSLayoutConstraint {
self.priority = UILayoutPriority( (1...1000 ~= priority) ? Float(priority) : 1000 )
return self
}
}
希望对您有所帮助〜
评论
我用了LICEcap。它是免费(GPL)并直接记录到GIF。只要GIF动画的大小不超过2 MB,您就可以像其他任何图像一样将其发布到此站点。
–罗布·梅奥夫
2014年9月17日20:45在
@LucaTorella仅具有高优先级约束,所以布局不明确。仅仅因为它今天获得了您想要的结果,并不意味着它将在下一版iOS中获得。假设子视图的纵横比为1:1,超级视图的尺寸为99×100,并且您只有所需的纵横比和高优先级相等约束。然后,自动布局可以将子视图的大小设置为99×99(总错误1)或100×100(总错误1)。一种尺寸是适合外观的尺寸;另一个是方面填充。添加所需的约束将产生唯一的最小错误解决方案。
–罗布·梅奥夫
2014-09-26 18:28
@LucaTorella感谢您对纵横比约束的可用性进行的更正。
–罗布·梅奥夫
2014-09-26 18:29
只需发布一则帖子,即可获得10,000多个更好的应用程序……令人难以置信。
–uɥƃnɐʌuop
2014年9月26日19:32
哇..我见过的堆栈溢出的最佳答案..谢谢你的先生。
– 0yeoj
15年6月25日在8:38