UIStackView's own intinsicContentSize



我正在使用具有以下配置的UIStackView:

let contentView = UIStackView()
contentView.distribution = .EqualSpacing
contentView.alignment = .Center
contentView.spacing = horizontalSpacing

每个元素都有自己的intrinsicContentSize因此UIStackView应该可以提供自己的intrinsicContentSize。文档指出spacing用作最小间距。

例:

view1: width=10
view2: width=15
spacing = 5
[view1(10)]-5-[view2(15)]

堆栈视图的intrinsicContentSize.width30

相反,我得到:

▿ CGSize
 - width : -1.0
 - height : -1.0 { ... }

这告诉我无法提供intrinsicContentSize

你们中有谁知道我是否做错了什么,行为是有意的还是这是一个错误?

从 iOS 9.1 开始,UIStackView 没有实现intrinsicContentSize

import UIKit
import ObjectiveC
let stackViewMethod = class_getInstanceMethod(UIStackView.self, "intrinsicContentSize")
let viewMethod = class_getInstanceMethod(UIView.self, "intrinsicContentSize")
print(stackViewMethod == viewMethod)

输出:

true

如果你真的需要,你可以创建一个UIStackView的子类并自己实现它。不过,您不需要这样做。如果允许UIStackView(通过对其的约束(选择自己的大小,则它会根据其排列子视图的固有内容大小(或您对其排列子视图的大小设置的其他约束(来选择自己的大小。

获取这个:

stackView.systemLayoutSizeFitting(UIView.layoutFittingCompressedSize)

如果您希望将其适合视图,则可以传递实际视图的框架以及水平和垂直配件的所需优先级。例如,这将保留视图的宽度并调整高度:

stackView.systemLayoutSizeFitting(view.frame.size, withHorizontalFittingPriority: .required, verticalFittingPriority: .defaultLow)

您创建的UIViews的固有高度和宽度为零。 尝试对基础 UIViews 使用自动布局约束。

您还可以使用自动布局来调整 UIStackView 的大小,如果这样做,请不要将对齐方式设置为居中,您应该改用填充。

例:

@property (nonatomic, strong) UIStackView *firstStackView;
@property (nonatomic, strong) UIView *redView;
@property (nonatomic, strong) UIView *blueView;
@property (nonatomic, strong) UIView *yellowView;
@property (nonatomic, strong) UIView *greenView;
@property (nonatomic, strong) NSArray *subViews;
self.redView = [[UIView alloc] init];
self.redView.backgroundColor = [UIColor redColor];
self.blueView = [[UIView alloc]  init];
self.blueView.backgroundColor = [UIColor blueColor];
self.yellowView = [[UIView alloc] init];
self.yellowView.backgroundColor = [UIColor yellowColor];
self.greenView = [[UIView alloc] init];
self.greenView.backgroundColor = [UIColor blackColor];
self.subViews = @[self.greenView,self.yellowView,self.redView,self.blueView];
self.firstStackView = [[UIStackView alloc] initWithArrangedSubviews:self.subViews];
self.firstStackView.translatesAutoresizingMaskIntoConstraints = NO;
self.firstStackView.distribution = UIStackViewDistributionFillEqually;
self.firstStackView.axis = UILayoutConstraintAxisHorizontal;
self.firstStackView.alignment = UIStackViewAlignmentFill;
[self.firstStackView.heightAnchor constraintEqualToConstant:40].active = YES;
[self.firstStackView.widthAnchor constraintEqualToConstant:500].active = YES;

这将起作用,因为堆栈视图现在具有高度和宽度。

相关内容

  • 没有找到相关文章

最新更新