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
Plain Diff
Browse Files
Authored by
Robert Payne
8 years ago
Committed by
GitHub
8 years ago
Commit
b41a3fd52be94f4665fd241090f51673761cab25
2 parents
7fed3da8
1b8877a9
Merge pull request #443 from teanet/master
Fix xcode 9 warnings
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
Masonry/MASConstraint.h
Masonry/MASConstraint.h
View file @
b41a3fd
...
...
@@ -73,17 +73,17 @@
/**
* Sets the NSLayoutConstraint priority to MASLayoutPriorityLow
*/
-
(
MASConstraint
*
(
^
)())
priorityLow
;
-
(
MASConstraint
*
(
^
)(
void
))
priorityLow
;
/**
* Sets the NSLayoutConstraint priority to MASLayoutPriorityMedium
*/
-
(
MASConstraint
*
(
^
)())
priorityMedium
;
-
(
MASConstraint
*
(
^
)(
void
))
priorityMedium
;
/**
* Sets the NSLayoutConstraint priority to MASLayoutPriorityHigh
*/
-
(
MASConstraint
*
(
^
)())
priorityHigh
;
-
(
MASConstraint
*
(
^
)(
void
))
priorityHigh
;
/**
* Sets the constraint relation to NSLayoutRelationEqual
...
...
Please
register
or
login
to post a comment