码迷,mamicode.com
首页 > 其他好文 > 详细

MKMapView的内存释放问题

时间:2014-09-28 19:29:05      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:ios   mkmapview   

MKMapView的内存释放问题

by 伍雪颖

- (void)dealloc {
    self.mapView.showsUserLocation = NO;
    self.mapView.userTrackingMode  = MKUserTrackingModeNone;
    [self.mapView.layer removeAllAnimations];
    [self.mapView removeAnnotations:self.mapView.annotations];
    [self.mapView removeOverlays:self.mapView.overlays];
    [self.mapView removeFromSuperview];
    self.mapView.delegate = nil;
    self.mapView = nil;
}

虽然不能释放全部的内存,但也能释放一部分的内存.


MKMapView的内存释放问题

标签:ios   mkmapview   

原文地址:http://blog.csdn.net/rainlesvio/article/details/39643343

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!