直接整理用法
1.设置高度宽度
[view1 autoSetDimension:ALDimensionHeight toSize:70.0];
[view1 autoSetDimension:ALDimensionWidth toSize:70.0];
2.相对于父视图
ALEdgeInsets defInsets = ALEdgeInsetsMake(20.0,20.0,20.0,20.0);
[view1 autoPinEdgesToSuperviewEdgesWithInsets:defInsets];
相当于下面的写法
[view1 autoPinEdgeToSuperviewEdge:ALEdgeLeft withInset:20.0];
[view1 autoPinEdgeToSuperviewEdge:ALEdgeRight withInset:20.0];
[view1 autoPinEdgeToSuperviewEdge:ALEdgeTop withInset:20.0];
[view1 autoPinEdgeToSuperviewEdge:ALEdgeBottom withInset:20.0];
相对于父视图除了某一个
[view1 autoPinEdgesToSuperviewEdgesWithInsets:defInsets excludingEdge:ALEdgeBottom];
3.两个视图的相对位置
[view2 autoPinEdge:ALEdgeTop toEdge:ALEdgeBottom ofView:view1 withOffset:defInsets.bottom];
时间: 2024-10-28 08:43:42