xcode5怎么使用masonry

 我来答
匿名用户
2016-03-21
展开全部
首先,在正式使用Masonry之前埋拦,我们先来看看在xib中我们是如何使用AutoLayout
可以看出,只要设置相应得局限,控制好父视图与子视图之间的关系就应该很ok的拖出你需要的需求。这里就不详细讲解具体拖拽的方法.....
然后,我们按着上图的属性来看看如何简单得使用Masonry
这里是Masonry给我们的属性

@property (nonatomic, strong, readonly) MASConstraint *left; /早禅/左侧

@property (nonatomic, strong, readonly) MASConstraint *top; //上侧

@property (nonatomic, strong, readonly) MASConstraint *right; //右侧

@property (nonatomic, strong, readonly) MASConstraint *bottom; //下侧

@property (nonatomic, strong, readonly) MASConstraint *leading; //首部

@property (nonatomic, strong, readonly) MASConstraint *trailing; //尾部

@property (nonatomic, strong, readonly) MASConstraint *width; //宽

@property (nonatomic, strong, readonly) MASConstraint *height; //高

@property (nonatomic, strong, readonly) MASConstraint *centerX; //横向居中

@property (nonatomic, strong, readonly) MASConstraint *centerY; //纵向居中

@property (nonatomic, strong, readonly) MASConstraint *baseline; //文本基线

属性有了,接着我们应该怎么在视图中添加约束呢,Masonry给我们提供了3个方法

//新增约束
- (NSArray *)mas_makeConstraints:(void(^)(MASConstraintMaker *make))block;

//更新约束
- (NSArray *)mas_updateConstraints:(void(^)(MASConstraintMaker *make))block;

//清楚之前的所有约束,只会保留最新的约束
- (NSArray *)mas_remakeConstraints:(void(^)(MASConstraintMaker *make))block;

合理的利用这个3个函数,基本上可以应对任何情弯睁胡况了

准备工作已经完成,我们来看几个小demo
1.居中一个view
// 防止block中的循环引用
__weak typeof (self) weakSelf = self;
// 初始化一个View
UIView *bgView = [[UIView alloc]init];
bgView.backgroundColor = [UIColor redColor];
[self.view addSubview:bgView];
// 使用mas_makeConstraints添加约束
[bgView mas_makeConstraints:^(MASConstraintMaker *make) {
make.center.equalTo(weakSelf.view);
make.size.mas_equalTo(CGSizeMake(200, 200));
}];
匿名用户
2016-03-21
展开全部
mas_makeConstraints 是给view添加约束,约束有几种,分别是边距,宽,高,左上右下距离埋裤,基准线。添加过约束后可以有修正,修正有offset(位移)虚悔修正和multipliedBy(弯誉简倍率)修正。语法一般是 make.equalTo or make.greaterThanOrEqualTo or make.lessThanOrEqualTo + 倍数和位移修正。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式