3

想知道我是否遇到了错误,或者我使用的是pathFromEncodedPath不正确的?

GMSMutablePath *path = [GMSMutablePath pathFromEncodedPath:@"o|}bF~bsgV_pR??~`f@~oR?"];
GMSPolyline *rectangle = [GMSPolyline polylineWithPath:path];
rectangle.map = mapView_;

上面的代码给了我一个例外:

+[GMSMutablePath count]: unrecognized selector sent to class 0x2839a8
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[GMSMutablePath count]: unrecognized selector sent to class 0x2839a8'

我已使用交互式折线编码器实用程序确认我的编码折线有效。

看看是否有人有建议,或者他们是否也遇到过这个问题。谢谢!

4

1 回答 1

3

这是当前版本 1.3 中的一个错误,将在下一个版本中修复。

目前的解决方法是创建一个 GMSPath,然后将其转换为 GMSMutablePath。

于 2013-06-06T04:42:29.117 回答