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
Loic
2009-03-10 23:24:29 +0000
Commit
6cd7b8c5783ee775b7c1ffac72b736a16971857b
1 parent
611430d4
fixed memory leak.
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
0 deletions
Sample2/Classes/FlipsideViewController.m
Sample2/Classes/MainViewController.m
Sample2/Classes/Sample2AppDelegate.m
Sample2/Classes/FlipsideViewController.m
View file @
6cd7b8c
...
...
@@ -61,6 +61,11 @@
}
-
(
void
)
dealloc
{
self
.
centerLatitude
=
nil
;
self
.
centerLongitude
=
nil
;
self
.
zoomLevel
=
nil
;
self
.
minZoom
=
nil
;
self
.
maxZoom
=
nil
;
[
super
dealloc
];
}
...
...
Sample2/Classes/MainViewController.m
View file @
6cd7b8c
...
...
@@ -50,6 +50,8 @@
}
-
(
void
)
dealloc
{
self
.
infoTextView
=
nil
;
self
.
mapView
=
nil
;
[
super
dealloc
];
}
...
...
Sample2/Classes/Sample2AppDelegate.m
View file @
6cd7b8c
...
...
@@ -21,6 +21,7 @@
-
(
void
)
dealloc
{
self
.
mapContents
=
nil
;
[
rootViewController
release
];
[
window
release
];
[
super
dealloc
];
...
...
Please
register
or
login
to post a comment