在编译时,当我试图将坐标返回给类的委托方法时,我得到了以下错误。
正在向不可比较类型“CLLocationCoordinate2D*”的参数发送“CLLocationCoordinate2D”
我知道这一定与指针有关,但我不太确定如何解决它。
发布于 2012-09-23 16:56:32
只需获取地址并返回:
CLLocationCoordinate2D thing;
[delegate methodcall:&thing];https://stackoverflow.com/questions/12550952
复制相似问题