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
Robert Payne
8 years ago
Commit
9e9017cf3a6fa320c84e192fb28c1fa09c2c89ff
1 parent
9871a597
Safe layout guides should use a min version required not a max
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
13 deletions
Masonry/View+MASAdditions.h
Masonry/View+MASAdditions.m
Masonry/View+MASShorthandAdditions.h
Masonry/View+MASAdditions.h
View file @
9e9017c
...
...
@@ -52,13 +52,13 @@
#endif
#if (__IPHONE_OS_VERSION_M
AX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOW
ED >= 110000)
#if (__IPHONE_OS_VERSION_M
IN_REQUIRED >= 110000) || (__TV_OS_VERSION_MIN_REQUIR
ED >= 110000)
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuide
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideTop
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideBottom
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideLeft
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideRight
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuide
;
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideTop
;
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideBottom
;
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideLeft
;
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
mas_safeAreaLayoutGuideRight
;
#endif
...
...
Masonry/View+MASAdditions.m
View file @
9e9017c
...
...
@@ -134,7 +134,7 @@
#endif
#if (__IPHONE_OS_VERSION_M
AX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOW
ED >= 110000)
#if (__IPHONE_OS_VERSION_M
IN_REQUIRED >= 110000) || (__TV_OS_VERSION_MIN_REQUIR
ED >= 110000)
-
(
MASViewAttribute
*
)
mas_safeAreaLayoutGuide
{
return
[[
MASViewAttribute
alloc
]
initWithView
:
self
item
:
self
.
safeAreaLayoutGuide
layoutAttribute
:
NSLayoutAttributeBottom
];
...
...
Masonry/View+MASShorthandAdditions.h
View file @
9e9017c
...
...
@@ -49,12 +49,12 @@
#endif
#if (__IPHONE_OS_VERSION_M
AX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOW
ED >= 110000)
#if (__IPHONE_OS_VERSION_M
IN_REQUIRED >= 110000) || (__TV_OS_VERSION_MIN_REQUIR
ED >= 110000)
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideTop
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideBottom
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideLeft
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideRight
API_AVAILABLE
(
ios
(
11
.
0
),
tvos
(
11
.
0
));
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideTop
;
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideBottom
;
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideLeft
;
@property
(
nonatomic
,
strong
,
readonly
)
MASViewAttribute
*
safeAreaLayoutGuideRight
;
#endif
...
...
@@ -103,7 +103,7 @@ MAS_ATTR_FORWARD(centerYWithinMargins);
#endif
#if (__IPHONE_OS_VERSION_M
AX_ALLOWED >= 110000) || (__TV_OS_VERSION_MAX_ALLOW
ED >= 110000)
#if (__IPHONE_OS_VERSION_M
IN_REQUIRED >= 110000) || (__TV_OS_VERSION_MIN_REQUIR
ED >= 110000)
MAS_ATTR_FORWARD
(
safeAreaLayoutGuideTop
)
;
MAS_ATTR_FORWARD
(
safeAreaLayoutGuideBottom
)
;
...
...
Please
register
or
login
to post a comment