Objective-C的UIStackView常用属性函数学习笔记

Kohana ·
更新时间:2024-09-20
· 1791 次阅读

目录

UIStackView

常用属性

常用函数

UIStackView

UIStackView能够利用自动布局的功能,创建能够动态适应设备方向、屏幕大小和可用空间中任何更改的用户界面。

UIStackView管理其arrangedSubviews属性中所有视图的布局。这些视图是根据它们在arrangedSubviews数组中的顺序沿堆栈视图的轴线排列的。具体布局因UIStackView的轴线、分布、对齐、间距和其他特性而异。

我们负责定义UIStackView的位置和大小(可选),UIStackView管理其内容的布局和大小。

UIStackView使用的简单示例:\color{red}{UIStackView使用的简单示例 :}UIStackView使用的简单示例:

- (void)viewDidLoad { [super viewDidLoad]; UIButton *redButton = [UIButton buttonWithType:UIButtonTypeCustom]; [redButton setTitle:@"红色按钮" forState:UIControlStateNormal]; redButton.backgroundColor = [UIColor redColor]; UIButton *greenButton = [UIButton buttonWithType:UIButtonTypeCustom]; [greenButton setTitle:@"绿色按钮" forState:UIControlStateNormal]; greenButton.backgroundColor = [UIColor greenColor]; UIButton *blueButton = [UIButton buttonWithType:UIButtonTypeCustom]; [blueButton setTitle:@"蓝色按钮" forState:UIControlStateNormal]; blueButton.backgroundColor = [UIColor blueColor]; UIStackView *stackView = [[UIStackView alloc]initWithArrangedSubviews:@[redButton,greenButton,blueButton]]; stackView.backgroundColor = [UIColor yellowColor]; stackView.alignment = UIStackViewAlignmentCenter; stackView.axis = UILayoutConstraintAxisHorizontal; stackView.distribution = UIStackViewDistributionFill; [self.view addSubview:stackView]; stackView.translatesAutoresizingMaskIntoConstraints = NO; [self.view addConstraints:@[ [stackView.centerYAnchor constraintEqualToAnchor:self.view.centerYAnchor], [stackView.centerXAnchor constraintEqualToAnchor:self.view.centerXAnchor], ]]; }

显示如下:

当设置蓝色视图隐藏时,显示如下:

当修改UIStackView约束,限制UIStackView大小时,显示如下:

stackView.translatesAutoresizingMaskIntoConstraints = NO; [self.view addConstraints:@[ [stackView.centerYAnchor constraintEqualToAnchor:self.view.centerYAnchor], [stackView.centerXAnchor constraintEqualToAnchor:self.view.centerXAnchor], [stackView.heightAnchor constraintEqualToConstant:100], [stackView.widthAnchor constraintEqualToConstant:300], ]];

当修改子视图约束,限制子视图大小时,显示如下:

stackView.translatesAutoresizingMaskIntoConstraints = NO; [self.view addConstraints:@[ [stackView.centerYAnchor constraintEqualToAnchor:self.view.centerYAnchor], [stackView.centerXAnchor constraintEqualToAnchor:self.view.centerXAnchor], ]]; redButton.translatesAutoresizingMaskIntoConstraints = NO; [stackView addConstraints:@[ [redButton.heightAnchor constraintEqualToConstant:50], [redButton.widthAnchor constraintEqualToConstant:100], ]]; greenButton.translatesAutoresizingMaskIntoConstraints = NO; [stackView addConstraints:@[ [greenButton.heightAnchor constraintEqualToConstant:50], [greenButton.widthAnchor constraintEqualToConstant:80], ]]; blueButton.translatesAutoresizingMaskIntoConstraints = NO; [stackView addConstraints:@[ [blueButton.heightAnchor constraintEqualToConstant:50], [blueButton.widthAnchor constraintEqualToConstant:120], ]];

既限制UIStackView约束,又限制子视图约束时,至少有一个子视图可以由UIStackView进行调整,显示如下:

- (void)viewDidLoad { [super viewDidLoad]; UIButton *redButton = [UIButton buttonWithType:UIButtonTypeCustom]; [redButton setTitle:@"红色按钮" forState:UIControlStateNormal]; redButton.backgroundColor = [UIColor redColor]; UIButton *greenButton = [UIButton buttonWithType:UIButtonTypeCustom]; [greenButton setTitle:@"绿色按钮" forState:UIControlStateNormal]; greenButton.backgroundColor = [UIColor greenColor]; UIButton *blueButton = [UIButton buttonWithType:UIButtonTypeCustom]; [blueButton setTitle:@"蓝色按钮" forState:UIControlStateNormal]; blueButton.backgroundColor = [UIColor blueColor]; UIStackView *stackView = [[UIStackView alloc]initWithArrangedSubviews:@[redButton,greenButton,blueButton]]; stackView.backgroundColor = [UIColor yellowColor]; stackView.alignment = UIStackViewAlignmentCenter; stackView.axis = UILayoutConstraintAxisHorizontal; stackView.distribution = UIStackViewDistributionFill; [self.view addSubview:stackView]; stackView.translatesAutoresizingMaskIntoConstraints = NO; [self.view addConstraints:@[ [stackView.centerYAnchor constraintEqualToAnchor:self.view.centerYAnchor], [stackView.centerXAnchor constraintEqualToAnchor:self.view.centerXAnchor], [stackView.heightAnchor constraintEqualToConstant:100], [stackView.widthAnchor constraintEqualToConstant:200], ]]; redButton.translatesAutoresizingMaskIntoConstraints = NO; [stackView addConstraints:@[ [redButton.heightAnchor constraintEqualToConstant:50], [redButton.widthAnchor constraintEqualToConstant:80], ]]; greenButton.translatesAutoresizingMaskIntoConstraints = NO; [stackView addConstraints:@[ [greenButton.heightAnchor constraintEqualToConstant:50], [greenButton.widthAnchor constraintEqualToConstant:80], ]]; blueButton.translatesAutoresizingMaskIntoConstraints = NO; NSLayoutConstraint *blueButtonWidthAnchor = [blueButton.widthAnchor constraintEqualToConstant:120]; blueButtonWidthAnchor.priority = UILayoutPriorityDefaultLow; [stackView addConstraints:@[ [blueButton.heightAnchor constraintEqualToConstant:50], blueButtonWidthAnchor, ]]; }

UIStackView就像一个自动适应其子视图约束或管理其子视图约束的容器视图,可以大量的节省设置或更新约束的代码。我们需要在某一方面放权给UIStackView,如果我们严格限制UIStackView的约束,就应当给予UIStackView自动调整其子视图约束的权力,如果我们严格限制其子视图约束,就应当给予UIStackView自动调整自身约束的权力,如果我们既严格限制UIStackView的约束,又严格限制其子视图约束,我们会得到约束冲突,这是来自UIStackView的抗议。

常用属性 @property(nonatomic) UILayoutConstraintAxis axis;

属性描述设置UIStackView排列视图时所沿的轴线方向。UILayoutConstraintAxis提供了两个枚举值,UILayoutConstraintAxisHorizontal(水平排列)与UILayoutConstraintAxisVertical(垂直排列),默认为UILayoutConstraintAxisHorizontal。

UILayoutConstraintAxis提供的枚举值:

typedef NS_ENUM(NSInteger, UILayoutConstraintAxis) { //水平排列 UILayoutConstraintAxisHorizontal = 0, //垂直排列 UILayoutConstraintAxisVertical = 1 }; @property(nonatomic) UIStackViewDistribution distribution;

属性描述设置UIStackView沿指定轴线方向布局子视图的方式

UIStackViewDistribution提供的布局子视图的方式如下:

typedef NS_ENUM(NSInteger, UIStackViewDistribution) { /* 一种布局,其中UIStackView调整其排列的视图的大小,以便它们沿着UIStackView的轴线方向填充可用空间。 当排列的视图不适合(上溢) UIStackView时,它会根据视图的抗压优先级缩小视图。 如果排列的视图没有填充(下溢) UIStackView时,它会根据视图的拥抱优先级拉伸视图。 如果存在任何歧义,UIStackView将根据排列的子视图数组中的索引调整排列的视图的大小。 即将UIStackView填充满。 */ UIStackViewDistributionFill = 0, /*一种布局,其中堆栈视图调整其排列视图的大小,以便它们沿着UIStackView的轴线方向均匀的填充可用空间。 即子视图以相同大小填充UIStackView */ UIStackViewDistributionFillEqually, /* 一种布局,其中堆栈视图调整其排列视图的大小,以便它们沿着UIStackView的轴线方向按比例调整大小填充可用空。 即子视图以比例大小填充UIStackView。 */ UIStackViewDistributionFillProportionally, /* 一种布局,其中UIStackView定位其排列视图,以便它们沿着UIStackView的轴线方向填充可用空间。 当排列的视图没有填充UIStackView时(下溢),它会均匀地填充视图之间的间距。 如果排列的视图不适合UIStackView时(上溢),它会根据视图的抗压优先级缩小视图。 如果存在任何歧义,堆栈视图将根据视图在arrangedSubviews数组中的索引缩小视图。 即子视图等间距填充UIStackView,间距为UIStackView调整,spacing属性限制了最小间距,但不限制最大间距。 */ UIStackViewDistributionEqualSpacing, /* 一种布局,试图定位排列视图,使其沿UIStackView的轴线方向具以相等的中心间距填充可用空间。 当排列的视图没有填充UIStackView时(下溢),如果未设置spacing属性,则自动插入间距,并调整间距以满足排列的子视图有相等的中心间距。 如果设置spacing属性,在维持以spacing属性设置间距值为最小间距的同时,它会根据视图的抗压优先级缩小视图以满足排列的子视图有相等的中心间距。 当排列的视图不适合UIStackView时(上溢),如果未设置spacing属性,它会根据视图的抗压优先级缩小视图以满足排列的子视图有相等的中心间距。 如果设置spacing属性,在维持以spacing属性设置间距值为最小间距的同时,它会根据视图的抗压优先级缩小视图以满足排列的子视图有相等的中心间距。 即子视图等中心间距填充UIStackView,间距为UIStackView调整,spacing属性限制了最小间距,但不限制最大间距。 */ UIStackViewDistributionEqualCentering, } API_AVAILABLE(ios(9.0)); @property(nonatomic) UIStackViewAlignment alignment;

属性描述UIStackView排列的子视图的对齐方式,其对齐方式受UIStackView排列视图时所沿的轴线方向影响。

UIStackViewAlignment提供的对齐子视图的方式如下:

typedef NS_ENUM(NSInteger, UIStackViewAlignment) { /* 填充式布局,如果UIStackView为水平排列,则子视图顶部与底部对齐UIStackView。 如果UIStackView为垂直排列,则子视图前部与后部对齐UIStackView。 */ UIStackViewAlignmentFill, /* 前部对齐式布局,UIStackView为垂直排列有效。 */ UIStackViewAlignmentLeading, /* 顶部对齐式布局,UIStackView为水平排列有效。 */ UIStackViewAlignmentTop = UIStackViewAlignmentLeading, /*按照第一个子视图的第一行文文本基线对齐,且高度最大的子视图底部对齐。UIStackView为水平排列有效。 */ UIStackViewAlignmentFirstBaseline, /* 子视图沿轴线方向剧中对齐 */ UIStackViewAlignmentCenter, /* 后部对齐式布局,UIStackView为垂直排列有效。 */ UIStackViewAlignmentTrailing, /*底部对齐式布局,UIStackView为水平排列有效。 */ UIStackViewAlignmentBottom = UIStackViewAlignmentTrailing, /*按照第一个子视图的最后一行文文本基线对齐,且高度最大的子视图顶部对齐。UIStackView为水平排列有效。 */ UIStackViewAlignmentLastBaseline, // Valid for horizontal axis only } API_AVAILABLE(ios(9.0)); @property(nonatomic) CGFloat spacing;

属性描述UIStackView排列子视图相邻边之间的间距。此属性定义了UIStackViewDistributionFill、UIStackViewDistributionFillEqually、UIStackViewDistributionFillProportionally布局的排列视图之间的严格间距,UIStackViewDistributionEqualSpace和UIStackViewDistributionEqualCenter布局的最小间距。使用负值允许重叠。默认值为0.0。

@property(nonatomic,getter=isBaselineRelativeArrangement) BOOL baselineRelativeArrangement;

属性描述一个布尔值,默认值为NO,用于确定是否从视图的基线测量视图之间的垂直间距。如果为YES,视图之间的垂直间距将从基于文本的视图的最后一条基线到其下方视图的第一条基线进行测量。顶部和底部视图的定位也使其最近的基线距离堆栈视图的边缘指定的距离。此属性仅由垂直排列的UIStackView视图使用。水平排列的UIStackView可以使用alignment属性控制。

@property(nonatomic,getter=isLayoutMarginsRelativeArrangement) BOOL layoutMarginsRelativeArrangement;

属性描述如果为YES,UIStackView将相对于其布局边距布局其排列视图。如果为NO,它将相对于其边界布置排列的视图。默认为NO。

@property(nonatomic,readonly,copy) NSArray<__kindof UIView *> *arrangedSubviews;

属性描述由UIStackView排列的视图数组。UIStackView确保了arrangedSubviews数组总是它的子视图数组(subviews)的一个子集。每当调用addArrangedSubview:方法时,如果尚未添加该子视图,UIStackView都会将该视图添加为子视图,每当调用removeFromSuperview:方法时,UIStackView也会将其从arrangedSubviews中删除。

常用函数 - (instancetype)initWithFrame:(CGRect)frame NS_DESIGNATED_INITIALIZER; - (instancetype)initWithCoder:(NSCoder *)coder NS_DESIGNATED_INITIALIZER;

函数描述 :初始化UIStackView。

- (instancetype)initWithArrangedSubviews:(NSArray<__kindof UIView *> *)views;

函数描述返回管理所提供的视图的UIStackView对象。UIStackView将所有需要排列的视图添加到其arrangedSubviews组中,并这些视图添加为子视图。如果arrangedSubviews数组中包含的任何视图收到removeFromSuperview的方法调用,UIStackView也会将其从arrangedSubviews中删除。

参数 :

views :要由UIStackView排列的视图数组。

返回值 : 一个新的UIStackView对象。

- (void)addArrangedSubview:(UIView *)view;

函数描述将视图添加到arrangedSubviews数组的末尾。UIStackView确保了arrangedSubviews数组总是它的子视图数组(subviews)的一个子集。如果尚未添加该子视图,此方法会自动将提供的视图添加为UIStackView的子视图,如果已经添加该子视图,此函数不做操作。

参数 :

view : 要添加到由UIStackView排列的视图数组中的视图。

- (void)removeArrangedSubview:(UIView *)view;

函数描述此方法从UIStackView的arrangedSubviews数组中删除提供的视图。视图的位置和大小将不再由堆栈视图管理。但是,此方法不会从堆栈的子视图数组中(subviews)删除提供的视图,因此视图仍然显示为视图层次的一部分,视图仍显示在屏幕上,需要通过调用视图的removeFromSuperview方法从子视图数组中显式删除视图。

- (void)insertArrangedSubview:(UIView *)view atIndex:(NSUInteger)stackIndex;

函数描述将提供的视图添加到排列的子视图数组中指定的索引处。如果索引已被占用,UIStackView会增加arrangedSubviews数组的大小,并将其被占用的索引及被占用的索引以上位置的所有内容移动到数组中更高的空间(索引后移),然后UIStackView将提供的视图存储在索引处。如果插入的视图尚未添加到UIStackView,此方法会自动将提供的视图添加为UIStackView的子视图,但插入的索引位置仅影响arrangedSubviews数组中视图的顺序,它不会影响子视图数组(subviews)中视图的顺序,也就是说插入的视图仍旧添加到子视图数组(subviews)的末尾。

参数 :

view : 要插入到由UIStackView排列的视图数组中的视图。

stackIndex : 其在arrangedSubviews数组中插入新视图的索引,此值不得大于此数组中当前的视图数,如果索引超出范围,此方法将抛出NSInternalInconsistencyException异常。

- (void)setCustomSpacing:(CGFloat)spacing afterView:(UIView *)arrangedSubview API_AVAILABLE(ios(11.0),tvos(11.0));

函数描述 :水平排列时,在指定视图后缘应用自定义间距。垂直排列时,在指定视图下缘应用自定义间距。

参数 :

spacing : 自定义间距。

arrangedSubview : 指定视图。

- (CGFloat)customSpacingAfterView:(UIView *)arrangedSubview API_AVAILABLE(ios(11.0),tvos(11.0));

函数描述 :水平排列时,返回指定视图后缘应用自定义间距。垂直排列时,返回指定视图下缘自定义间距。

参数 :

arrangedSubview : 指定视图。

以上就是Objective-C的UIStackView常用属性函数学习笔记的详细内容,更多关于Objective-C UIStackView的资料请关注软件开发网其它相关文章!



objective-c 数学 函数 学习 属性 学习笔记

需要 登录 后方可回复, 如果你还没有账号请 注册新账号