我有如下代码:
- (void)viewDidLoad
{
[super viewDidLoad];
NSString* template = [NSString stringWithFormat: @"http://my-map-server.com/?mode=tile&tilemode=gmap&tile={x}+{y}+{z}"] ;
MKTileOverlay * overlay = [[MKTileOverlay alloc] initWithURLTemplate:template]; //returns nil
overlay.canReplaceMapContent = NO;
[mainMap addOverlay:overlay1 level:MKOverlayLevelAboveLabels];
}
为什么[[MKTileOverlay alloc] initWithURLTemplate:template]
是返回nil
值?我找不到任何合理的解决方案。类似的代码适用于我的其他项目。