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
Russell Quinn
8 years ago
Commit
27fc6ca40f23ac77df1b40efa4d45efdb038f1f5
1 parent
1b8877a9
Fix Xcode 9 warnings in MasConstraint.m
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
Masonry/MASConstraint.m
Masonry/MASConstraint.m
View file @
27fc6ca
...
...
@@ -62,21 +62,21 @@
#pragma mark - MASLayoutPriority proxies
-
(
MASConstraint
*
(
^
)())
priorityLow
{
-
(
MASConstraint
*
(
^
)(
void
))
priorityLow
{
return
^
id
{
self
.
priority
(
MASLayoutPriorityDefaultLow
);
return
self
;
};
}
-
(
MASConstraint
*
(
^
)())
priorityMedium
{
-
(
MASConstraint
*
(
^
)(
void
))
priorityMedium
{
return
^
id
{
self
.
priority
(
MASLayoutPriorityDefaultMedium
);
return
self
;
};
}
-
(
MASConstraint
*
(
^
)())
priorityHigh
{
-
(
MASConstraint
*
(
^
)(
void
))
priorityHigh
{
return
^
id
{
self
.
priority
(
MASLayoutPriorityDefaultHigh
);
return
self
;
...
...
Please
register
or
login
to post a comment