Toggle navigation
Toggle navigation
This project
Loading...
Sign in
尹诚
/
Mapbox-iOS-SDK
·
Commits
Go to a project
GitLab
Go to dashboard
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
Justin R. Miller
2012-11-14 16:14:29 -0800
Commit
2b5f08be0526a2d298e7fb2371f210d86215a2ed
1 parent
3a3b9ea5
only warn dev of layer no-op when layer is passed
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
3 deletions
MapView/Map/RMPointAnnotation.m
MapView/Map/RMPolygonAnnotation.m
MapView/Map/RMPolylineAnnotation.m
MapView/Map/RMPointAnnotation.m
View file @
2b5f08b
...
...
@@ -32,8 +32,9 @@
@implementation
RMPointAnnotation
-
(
void
)
setLayer
:(
RMMapLayer
*
)
l
ayer
-
(
void
)
setLayer
:(
RMMapLayer
*
)
newL
ayer
{
if
(
newLayer
)
RMLog
(
@"Setting a custom layer on an %@ is a no-op"
,
[
self
class
]);
}
...
...
MapView/Map/RMPolygonAnnotation.m
View file @
2b5f08b
...
...
@@ -55,8 +55,9 @@
[
super
dealloc
];
}
-
(
void
)
setLayer
:
(
RMMapLayer
*
)
l
ayer
-
(
void
)
setLayer
:
(
RMMapLayer
*
)
newL
ayer
{
if
(
newLayer
)
RMLog
(
@"Setting a custom layer on an %@ is a no-op"
,
[
self
class
]);
}
...
...
MapView/Map/RMPolylineAnnotation.m
View file @
2b5f08b
...
...
@@ -32,8 +32,9 @@
@implementation
RMPolylineAnnotation
-
(
void
)
setLayer
:(
RMMapLayer
*
)
l
ayer
-
(
void
)
setLayer
:(
RMMapLayer
*
)
newL
ayer
{
if
(
newLayer
)
RMLog
(
@"Setting a custom layer on an %@ is a no-op"
,
[
self
class
]);
}
...
...
Please
register
or
login
to post a comment