# Masonry [![Build Status](https://travis-ci.org/SnapKit/Masonry.svg?branch=master)](https://travis-ci.org/SnapKit/Masonry) [![Coverage Status](https://img.shields.io/coveralls/SnapKit/Masonry.svg?style=flat-square)](https://coveralls.io/r/SnapKit/Masonry) [![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) ![Pod Version](https://img.shields.io/cocoapods/v/Masonry.svg?style=flat)
**Masonry is still actively maintained, we are committed to fixing bugs and merging good quality PRs from the wider community. However if you're using Swift in your project, we recommend using [SnapKit](https://github.com/SnapKit/SnapKit) as it provides better type safety with a simpler API.**
Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax. Masonry has its own layout DSL which provides a chainable way of describing your NSLayoutConstraints which results in layout code that is more concise and readable.
Masonry supports iOS and Mac OS X.
For examples take a look at the **Masonry iOS Examples** project in the Masonry workspace. You will need to run `pod install` after downloading.
## What's wrong with NSLayoutConstraints?
Under the hood Auto Layout is a powerful and flexible way of organising and laying out your views. However creating constraints from code is verbose and not very descriptive.
Imagine a simple example in which you want to have a view fill its superview but inset by 10 pixels on every side
```obj-c
UIView *superview = self.view;
UIView *view1 = [[UIView alloc] init];
view1.translatesAutoresizingMaskIntoConstraints = NO;
view1.backgroundColor = [UIColor greenColor];
[superview addSubview:view1];
UIEdgeInsets padding = UIEdgeInsetsMake(10, 10, 10, 10);
[superview addConstraints:@[
//view1 constraints
[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeTop
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeTop
multiplier:1.0
constant:padding.top],
[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeLeft
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeLeft
multiplier:1.0
constant:padding.left],
[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeBottom
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeBottom
multiplier:1.0
constant:-padding.bottom],
[NSLayoutConstraint constraintWithItem:view1
attribute:NSLayoutAttributeRight
relatedBy:NSLayoutRelationEqual
toItem:superview
attribute:NSLayoutAttributeRight
multiplier:1
constant:-padding.right],
]];
```
Even with such a simple example the code needed is quite verbose and quickly becomes unreadable when you have more than 2 or 3 views.
Another option is to use Visual Format Language (VFL), which is a bit less long winded.
However the ASCII type syntax has its own pitfalls and its also a bit harder to animate as `NSLayoutConstraint constraintsWithVisualFormat:` returns an array.
## Prepare to meet your Maker!
Heres the same constraints created using MASConstraintMaker
```obj-c
UIEdgeInsets padding = UIEdgeInsetsMake(10, 10, 10, 10);
[view1 mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.equalTo(superview.mas_top).with.offset(padding.top); //with is an optional semantic filler
make.left.equalTo(superview.mas_left).with.offset(padding.left);
make.bottom.equalTo(superview.mas_bottom).with.offset(-padding.bottom);
make.right.equalTo(superview.mas_right).with.offset(-padding.right);
}];
```
Or even shorter
```obj-c
[view1 mas_makeConstraints:^(MASConstraintMaker *make) {
make.edges.equalTo(superview).with.insets(padding);
}];
```
Also note in the first example we had to add the constraints to the superview `[superview addConstraints:...`.
Masonry however will automagically add constraints to the appropriate view.
Masonry will also call `view1.translatesAutoresizingMaskIntoConstraints = NO;` for you.
## Not all things are created equal
> `.equalTo` equivalent to **NSLayoutRelationEqual**
> `.lessThanOrEqualTo` equivalent to **NSLayoutRelationLessThanOrEqual**
> `.greaterThanOrEqualTo` equivalent to **NSLayoutRelationGreaterThanOrEqual**
These three equality constraints accept one argument which can be any of the following:
#### 1. MASViewAttribute
```obj-c
make.centerX.lessThanOrEqualTo(view2.mas_left);
```
MASViewAttribute | NSLayoutAttribute
------------------------- | --------------------------
view.mas_left | NSLayoutAttributeLeft
view.mas_right | NSLayoutAttributeRight
view.mas_top | NSLayoutAttributeTop
view.mas_bottom | NSLayoutAttributeBottom
view.mas_leading | NSLayoutAttributeLeading
view.mas_trailing | NSLayoutAttributeTrailing
view.mas_width | NSLayoutAttributeWidth
view.mas_height | NSLayoutAttributeHeight
view.mas_centerX | NSLayoutAttributeCenterX
view.mas_centerY | NSLayoutAttributeCenterY
view.mas_baseline | NSLayoutAttributeBaseline
#### 2. UIView/NSView
if you want view.left to be greater than or equal to label.left :
```obj-c
//these two constraints are exactly the same
make.left.greaterThanOrEqualTo(label);
make.left.greaterThanOrEqualTo(label.mas_left);
```
#### 3. NSNumber
Auto Layout allows width and height to be set to constant values.
if you want to set view to have a minimum and maximum width you could pass a number to the equality blocks:
```obj-c
//width >= 200 && width <= 400
make.width.greaterThanOrEqualTo(@200);
make.width.lessThanOrEqualTo(@400)
```
However Auto Layout does not allow alignment attributes such as left, right, centerY etc to be set to constant values.
So if you pass a NSNumber for these attributes Masonry will turn these into constraints relative to the view’s superview ie:
```obj-c
//creates view.left = view.superview.left + 10
make.left.lessThanOrEqualTo(@10)
```
Instead of using NSNumber, you can use primitives and structs to build your constraints, like so:
```obj-c
make.top.mas_equalTo(42);
make.height.mas_equalTo(20);
make.size.mas_equalTo(CGSizeMake(50, 100));
make.edges.mas_equalTo(UIEdgeInsetsMake(10, 0, 10, 0));
make.left.mas_equalTo(view).mas_offset(UIEdgeInsetsMake(10, 0, 10, 0));
```
By default, macros which support [autoboxing](https://en.wikipedia.org/wiki/Autoboxing#Autoboxing) are prefixed with `mas_`. Unprefixed versions are available by defining `MAS_SHORTHAND_GLOBALS` before importing Masonry.
#### 4. NSArray
An array of a mixture of any of the previous types
```obj-c
make.height.equalTo(@[view1.mas_height, view2.mas_height]);
make.height.equalTo(@[view1, view2]);
make.left.equalTo(@[view1, @100, view3.right]);
````
## Learn to prioritize
> `.priority` allows you to specify an exact priority
> `.priorityHigh` equivalent to **UILayoutPriorityDefaultHigh**
> `.priorityMedium` is half way between high and
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于人工智能、计算机科学与技术等相关专业,更为适合; 4、下载使用后,可先查看README.md文件(如有),本项目仅用作交流学习参考,请切勿用于商业用途。
资源推荐
资源详情
资源评论
收起资源包目录
毕业设计&课设_iOS 商城项目,含购物与商家管理功能,用 Sqlite,有账号示例,适合 iOS 开发练习.zip (943个子文件)
FMDatabase.h 53KB
AFURLSessionManager.h 30KB
AFURLRequestSerialization.h 23KB
AFHTTPSessionManager.h 20KB
SDWebImageManager.h 14KB
FMResultSet.h 13KB
AFURLResponseSerialization.h 13KB
NSButton+WebCache.h 12KB
UIButton+WebCache.h 12KB
NSObject+MJKeyValue.h 11KB
SDWebImageDownloader.h 10KB
SDImageCache.h 10KB
UIButton+AFNetworking.h 10KB
AFImageDownloader.h 10KB
UIImageView+WebCache.h 9KB
AFNetworkReachabilityManager.h 8KB
MASConstraint.h 8KB
FMDatabaseQueue.h 8KB
SDCycleScrollView.h 7KB
FMDatabasePool.h 7KB
UIView+WebCache.h 7KB
FMDatabaseAdditions.h 7KB
AFAutoPurgingImageCache.h 6KB
MASUtilities.h 6KB
UIImageView+AFNetworking.h 6KB
AFSecurityPolicy.h 6KB
MASConstraintMaker.h 6KB
AFNetworkActivityIndicatorManager.h 5KB
View+MASAdditions.h 5KB
SDWebImageDownloaderOperation.h 5KB
View+MASShorthandAdditions.h 5KB
SDWebImageTransition.h 5KB
UIWebView+AFNetworking.h 5KB
UIImageView+HighlightedWebCache.h 4KB
SDWebImageCoder.h 4KB
SDWebImagePrefetcher.h 4KB
NSObject+MJProperty.h 3KB
NSObject+MJClass.h 3KB
NSArray+MASAdditions.h 3KB
SDWebImageCompat.h 3KB
UIProgressView+AFNetworking.h 2KB
UIView+Toast.h 2KB
SDWebImageCoderHelper.h 2KB
MJExtensionConst.h 2KB
SDWebImageCodersManager.h 2KB
DBProductDetail.h 2KB
TAPageControl.h 2KB
UIRefreshControl+AFNetworking.h 2KB
UIActivityIndicatorView+AFNetworking.h 2KB
DBProduct.h 2KB
MASConstraint+Private.h 2KB
UIKit+AFNetworking.h 2KB
SDCollectionViewCell.h 2KB
SZKImagePickerVC.h 2KB
AFNetworking.h 2KB
SDImageCacheConfig.h 2KB
MJProperty.h 2KB
DBOrderDetail.h 1KB
LMJDropdownMenu.h 1KB
UIView+SDExtension.h 1KB
DBShoppingCartDetail.h 1KB
UIView+WebCacheOperation.h 1KB
AddProductView.h 1KB
UIImage+AFNetworking.h 1KB
NSString+MJExtension.h 1KB
MASViewConstraint.h 1KB
SDWebImageImageIOCoder.h 1KB
MASViewAttribute.h 1KB
WaitPayView.h 1KB
SDWebImageFrame.h 1KB
DBUser.h 1KB
DBComment.h 1KB
MJPropertyType.h 1KB
UIImage+MultiFormat.h 1KB
NSObject+MJCoding.h 1KB
DetailsModel.h 1KB
NSArray+MASShorthandAdditions.h 1KB
SDWebImageGIFCoder.h 1KB
DBOrderList.h 1KB
NSData+ImageContentType.h 1011B
SingleTableView.h 939B
ViewController+MASAdditions.h 921B
Masonry.h 831B
SDAnimatedImageRep.h 813B
DBForum.h 804B
ManagerView.h 767B
OrderAdressView.h 767B
DBShoppingCart.h 737B
DBAddress.h 712B
MJPropertyKey.h 710B
UIImage+GIF.h 688B
MyMessageNormalUser.h 676B
ShoppingCartListCell.h 668B
ProductListSearchModel.h 633B
ClassView.h 631B
DBPayMent.h 624B
SingleListModel.h 622B
ShoppingCartListModel.h 602B
DetailsTitleLabelView.h 594B
ForumDetialView.h 590B
共 943 条
- 1
- 2
- 3
- 4
- 5
- 6
- 10
资源评论
pk_xz123456
- 粉丝: 2159
- 资源: 1837
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- Java正在成长但不仅仅是Java Java成长路线,但学到的不仅仅是Java .zip
- amis 是一个低代码前端框架(它使用 JSON 配置来生成页面).zip
- 包括一些学习笔记,案例,后期还会添加java小游戏.zip
- Java实现的包含题库编辑、抽取题组卷、试题分析、在线考试等模块的Web考试系统 .zip
- 北航大一软件工程小学期java小游戏.zip
- 基于Spring MVC MyBatis FreeMarker和Vue.js的在线考试系统前端设计源码
- 初学Java时花费12天做的一款小游戏.zip
- Java字节码工程工具包.zip
- 一个未完成的泥巴游戏尝试.zip大作业实践
- 基于Python的12306智能刷票与订票设计源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功