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
401d86c11615be117cc0767498aff4a48de0515d
1 parent
9bca6ccc
v0.4.0
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
3 deletions
CHANGELOG.md
Masonry.podspec
README.md
CHANGELOG.md
View file @
401d86c
v0.4.0
=======
*
Fixed Xcode auto-complete support (
[
nickynick
](
https://github.com/nickynick
)
)
***Breaking Changes**
*
If you are holding onto any instances of masonry constraints ie
```
obj-c
// in public/private interface
@property (nonatomic, strong) id<MASConstraint> topConstraint;
```
You will need to change this to
```
obj-c
// in public/private interface
@property (nonatomic, strong) MASConstraint *topConstraint;
```
Instead of using protocols Masonry now uses an abstract base class for constraints in order to get Xcode auto-complete support see http://stackoverflow.com/questions/14534223/
v0.3.2
=======
...
...
Masonry.podspec
View file @
401d86c
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'Masonry'
s
.
version
=
'0.
3.2
'
s
.
version
=
'0.
4.0
'
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.2
'
}
s
.
source
=
{
:git
=>
'https://github.com/cloudkite/Masonry.git'
,
:tag
=>
'v0.
4.0
'
}
s
.
description
=
%{
Masonry is a light-weight layout framework which wraps AutoLayout with a nicer syntax.
...
...
README.md
View file @
401d86c
...
...
@@ -213,7 +213,7 @@ You could also reference multiple constraints by storing them away in an array.
```
obj-c
// in public/private interface
@property (nonatomic, strong)
id<MASConstraint>
topConstraint;
@property (nonatomic, strong)
MASConstraint *
topConstraint;
...
...
...
Please
register
or
login
to post a comment