Toggle navigation
Toggle navigation
This project
Loading...
Sign in
ios
/
Masonry
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Jonas Budelmann
11 years ago
Commit
185b18606eebb62026797b25fe2b7c1edc415f45
1 parent
981940ec
v0.3.1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
CHANGELOG.md
Masonry.podspec
CHANGELOG.md
View file @
185b186
v0.3.1
=======
*
Add the same set of constraints to multiple views in an array (
[
danielrhammond
](
https://github.com/danielrhammond
)
)
```
objective-c
[@[view1, view2, view3] mas_makeConstraints:^(MASConstraintMaker *make) {
make.baseline.equalTo(superView.mas_centerY);
make.width.equalTo(@100);
}];
```
v0.3.0
=======
...
...
Masonry.podspec
View file @
185b186
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'Masonry'
s
.
version
=
'0.3.
0
'
s
.
version
=
'0.3.
1
'
s
.
license
=
'MIT'
s
.
summary
=
'Harness the power of Auto Layout NSLayoutConstraints with a simplified, chainable and expressive syntax.'
s
.
homepage
=
'https://github.com/cloudkite/Masonry'
s
.
author
=
{
'Jonas Budelmann'
=>
'jonas.budelmann@gmail.com'
}
s
.
source
=
{
:git
=>
'https://github.com/cloudkite/Masonry.git'
,
:tag
=>
'v0.3.
0
'
}
s
.
source
=
{
:git
=>
'https://github.com/cloudkite/Masonry.git'
,
:tag
=>
'v0.3.
1
'
}
s
.
description
=
%{
Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
...
...
Please
register
or
login
to post a comment