网上关于高德的文章并不多,不知道是大家平时遇到的问题少,还是都水平太高,这里只是记录下自己当初做地图的时候遇到的一些小问题以及解决的历程
1.背景
产品需求: 我们的用户允许自己输入一个地址,输入的这个地址需要在地图上做一个标记,如下设计图
简书-地址标记.png2. OK开始做
这个倒也简单,筛选了下,选择高德地图,作为我们的第三方地图服务,下载SDK,研究接口,cocoapods引入,定义坐标点,绘制图层,好的一气呵成
拿去信心满满的给产品看,嗯嗯,产品经理很满意
自己测试了下,也没什么问题,ok,移交测试
3. 测试开始测试
测试测试结束,反馈- 有crash
我擦,严重了...
4. 有问题?!
开始查,简单过了代码,好像没有大的问题,然后查crash堆栈,但是这个查出来,好像不是我的代码问题,是高德的问题
好,我们来细数高德地图有哪些问题
4.1 对象为nil没有检查
场景A:
-[__NSPlaceholderDictionary initWithObjects:forKeys:count:]: attempt to insert nil object from objects[0]
0 CoreFoundation 0x2d724f63 <redacted> + 154
1 libobjc.A.dylib 0x37b656af objc_exception_throw + 38
2 CoreFoundation 0x2d66317b <redacted> + 530
3 CoreFoundation 0x2d662f43 <redacted> + 50
4 plyChip 0x0036d9bd -[MAAnalytics headerInfo] + 980
5 plyChip 0x0036dd17 -[MAAnalytics JSONLogWithLogs:] + 82
6 plyChip 0x0036c327 -[MAAnalytics uploadLogWithType:] + 154
7 plyChip 0x003ae585 -[MAMapView initAnalytics] + 304
8 plyChip 0x003ae5ad -[MAMapView sendingStatisticsInformation] + 20
9 plyChip 0x003ae8b7 -[MAMapView initialize] + 154
10 plyChip 0x003aea63 -[MAMapView initWithFrame:] + 114
11 plyChip 0x000d8767 -[PCMarkOnMapViewController MAMapView] + 378
12 plyChip 0x000d6a7b -[PCMarkOnMapViewController initMapView] + 38
13 plyChip 0x000d6a51 -[PCMarkOnMapViewController viewDidLoad] + 216
14 UIKit 0x2fe9c37b <redacted> + 518
15 UIKit 0x2fe9c139 <redacted> + 24
16 UIKit 0x300283eb <redacted> + 634
17 UIKit 0x2ff46273 <redacted> + 418
18 UIKit 0x2ff4607d <redacted> + 44
这个是高德sdk的crash,在初始化map view的时候,高德会上传StatisticsInfo(统计log),但是如果高德的key(我们的APP在高德注册的key)为空的情况下,会crash.
这个不影响我们的app,因为正常情况我们的key是存在的,发现该问题是在调试时使用临时证书,没有高德key时才出现的
场景B:
[__NSArrayM insertObject:atIndex:]: object cannot be nil(_Z14reFillGridListi + 298)
0 CoreFoundation 0x311d6f63 <redacted> + 154
1 libobjc.A.dylib 0x3b6176af objc_exception_throw + 38
2 CoreFoundation 0x31110c81 CFStringConvertNSStringEncodingToEncoding + 0
3 plxxxx 0x003fa8a7 _Z14reFillGridListi + 298
4 plxxxx 0x003e2687 -[MAMapView render:state:] + 82
5 plxxxx 0x003f1c77 -[MAES1Render renderMap:] + 138
6 plxxxx 0x00409005 _ZN8GLMapper12drawMapFrameEv + 1056
7 plxxxx 0x00408b8d _ZN8GLMapper9drawFrameEv + 432
8 plxxxx 0x003f1b17 -[MAES1Render render] + 218
9 plxxxx 0x003f099d -[MABaseMapView drawView:] + 180
10 QuartzCore 0x336209cf <redacted> + 98
11 QuartzCore 0x33620779 <redacted> + 344
12 IOMobileFramebuffer 0x3624d76d <redacted> + 104
13 IOKit 0x31eb8a75 IODispatchCalloutFromCFMessage + 248
14 CoreFoundation 0x31196e21 <redacted> + 136
15 CoreFoundation 0x311a19df <redacted> + 34
16 CoreFoundation 0x311a197b <redacted> + 346
17 CoreFoundation 0x311a014f <redacted> + 1398
18 CoreFoundation 0x3110ac27 CFRunLoopRunSpecific + 522
19 CoreFoundation 0x3110aa0b CFRunLoopRunInMode + 106
20 GraphicsServices 0x35e31283 GSEventRunModal + 138
21 UIKit 0x339ae049 UIApplicationMain + 1136
22 plyChip 0x00130671 main + 108
23 libdyld.dylib 0x3bb1fab7 <redacted> + 2
这个具体是高德哪里的问题没有查出来,应该是绘制地图的时候的问题.
4.2 一载入地图就CPU 飙升
这个感谢instruments,很清晰的看出来,其他页面都正常,一进入地图就哗哗的往上涨
优化前.png因为我进入地图后,会根据经纬度重新载入位置,这个需要一定的时间
但是在这个时间,如果用户选择退出页面,那么会很高概率发生crash
易出现设备iPhone4/4s,iPhone5/5s
易出现系统:在iOS7上高概率,iOS8频率较低,iOS9就很少出现了(当然iOS9很多是6s或者6P,内存撑得住,所以能hold住)
优化点1:
如果是因为载入慢,那么我就让用户在载入这个过程中不要退出
优化点2:
在退出的时候,需要及时释放代理
viewwilldisappear的时候,delegate设置为nil
- (void)viewWillDisappear:(BOOL)animated {
[MAMapView shareMAMapView].showsUserLocation = NO;
[MAMapView shareMAMapView].delegate = nil;
[super viewWillDisappear:animated];
}
优化点3:
关于内存的问题 ,因为我是每次进入地图的时候,都会new一个mapview出来,这样,如果进进出出,进进出出,CPU就跟火箭似的的,擦擦网上跑
查了很多高德的社区论坛,和官方文档
后来从高德某个回答的提醒下,想到用单例
之前一直没用,是因为想到,地图本身不是一个高频的东西,没必要用单例
而且是处于对高德地图的高度信任
但是现在就结果来看,高德在内存方面做得并不好,而且代码存着各种问题
最终决定用单例实现mapview
具体代码如下:
static MAMapView *_mapView = nil;
+ (MAMapView *)shareMAMapView {
@synchronized(self) {
[MAMapServices sharedServices].apiKey = kAMapSearchApplicationSecretKey;
if (_mapView == nil) {
CGRect frame = [[UIScreen mainScreen] bounds];
_mapView = [[MAMapView alloc] initWithFrame:frame];
_mapView.autoresizingMask =
UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
_mapView.showsUserLocation = YES;
// _mapView.rotateEnabled = YES;
// _mapView.rotateCameraEnabled = YES;
_mapView.zoomEnabled = YES;
}
_mapView.frame = [UIScreen mainScreen].bounds;
return _mapView;
}
}
//重写allocWithZone保证分配内存alloc相同
+ (id)allocWithZone:(NSZone *)zone {
@synchronized(self) {
if (_mapView == nil) {
_mapView = [super allocWithZone:zone];
return _mapView; // assignment and return on first allocation
}
}
return nil; // on subsequent allocation attempts return nil
}
//保证copy相同
+ (id)copyWithZone:(NSZone *)zone {
return _mapView;
}
优化后的CPU截图:
优化后.png5. 其他同学是否还遇到过高德相关问题
IOS开发中使用高德地图所遇到的问题
polen: 这个也是多次生成改为公用一个的模式(相当于单例了)
来自cocoachina:我用高德地图定位 导航时 会产生内存警告问题 然后程序崩溃 该怎么解决
polen: 很久之前的问题了,但是论坛里没说出有太建设性的意见...
网友评论
```
[self.mapView removeOverlays:self.mapView.overlays];
[self.mapView removeAnnotations:self.mapView.annotations];
```
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSArrayM insertObject:atIndex:]: object cannot be nil'
*** First throw call stack:
(
0 CoreFoundation 0x0000000107ab834b __exceptionPreprocess + 171
1 libobjc.A.dylib 0x0000000107eb921e objc_exception_throw + 48
2 CoreFoundation 0x00000001079e938f -[__NSArrayM insertObject:atIndex:] + 1375
3 plamBus 0x0000000101d3a38b _Z14reFillGridListi + 239
4 plamBus 0x0000000101d3a432 am_dataprovider_refill_gridlist + 11
5 plamBus 0x0000000101d1eb62 -[MAMapView render:state:] + 99
6 plamBus 0x0000000101d2fc13 -[MAES1Render renderMap:] + 188
7 plamBus 0x0000000101d4bf8a _ZN8GLMapper12drawMapFrameEv + 1812
8 plamBus 0x0000000101d4b80a _ZN8GLMapper9drawFrameEv + 730
..........
不知道您这个问题找到原因没,因为是接手的老项目,一点思路都没有,望指定小弟一下,跪谢