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
Hal Mueller
2009-02-26 23:49:37 +0000
Commit
3bbe34002b3ebb5a8c72f75cee86ebefa1ac78d2
1 parent
81d1e219
added -dealloc for RMLayerSet and RMMarkerManager. Fixes Issue 45, Issue 53.
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
MapView/Map/RMLayerSet.m
MapView/Map/RMMarkerManager.m
MapView/Map/RMLayerSet.m
View file @
3bbe340
...
...
@@ -42,6 +42,15 @@
return
self
;
}
-
(
void
)
dealloc
{
[
set
release
];
set
=
nil
;
mapContents
=
nil
;
[
super
dealloc
];
}
-
(
void
)
correctScreenPosition
:
(
CALayer
*
)
layer
{
if
([
layer
conformsToProtocol
:
@protocol
(
RMMovingMapLayer
)])
...
...
MapView/Map/RMMarkerManager.m
View file @
3bbe340
...
...
@@ -44,6 +44,12 @@
return
self
;
}
-
(
void
)
dealloc
{
contents
=
nil
;
[
super
dealloc
];
}
///////////////////////////////////////////////////////////////////////////////////////////////////
#pragma mark
#pragma mark Adding / Removing / Displaying Markers
...
...
Please
register
or
login
to post a comment