无法让Google地图初始化iOS

时间:2014-02-23 04:27:43

标签: ios google-maps sdk

这个问题没有意义。我一直这样:

[GMSMapView animateToCameraPosition:]: unrecognized selector sent to instance 0x93864f0

错误似乎来自我初始化的尝试,来自init方法和类方法。导致问题的代码是:

self.myMapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];

在我看来,谷歌的代码有问题,因为我没有调用这种方法,谷歌的代码似乎是。我有什么遗漏或者我必须等待谷歌修复这个错误吗?也许旧版本可以使用吗?

1 个答案:

答案 0 :(得分:0)

检查此方法:

- (void) moveCameraToPosition:(CLLocationCoordinate2D) position
{

    GMSCameraUpdate *camera = [GMSCameraUpdate setTarget:position];
    [_mapView animateWithCameraUpdate:camera];


}

这对我来说很好。