我将#import添加到我的.h
为什么这个XCODE不识别'GMSMarker'但识别GSMMarkerOptions?
这不起作用(来自文档):
CLLocationCoordinate2D position = CLLocationCoordinate2DMake(0, 0);
GMSMarker *marker = [GMSMarker markerWithPosition:position];
marker.title = @"Hello World";
marker.map = mapView_;
这很好用:
GMSMarkerOptions *options = [[GMSMarkerOptions alloc] init];
options.title = @"gsmmarkeroptions does exist";
答案 0 :(得分:2)
听起来你有SDK的1.1.2版本,但你需要获得最新版本1.2。
在1.2 GMSMarkerOptions
已删除,现在您直接使用GMSMarker
。