我正在练习在地图上绘制折线。 我已采用download here.
中的示例代码 MKMapRect routeRect = MKMapRectMake(southWestPoint.x, southWestPoint.y, northEastPoint.x - southWestPoint.x, northEastPoint.y - southWestPoint.y);
// clear the memory allocated earlier for the points
free(pointArr);
The left operand of '-' is a garbage value
嗯,我没理解。 为什么会这样?
这是严重错误吗?
如何解决?
谢谢。
答案 0 :(得分:1)
变量northEastPoint
显然没有被初始化为任何东西。这意味着您的计算几乎肯定不会返回您希望的任何值。您可以通过将所有变量初始化为有意义的状态来修复它。