我想将两个纬度相减以找到最短距离,但我收到此错误,“指向接口 'NSNumber' 的指针的算术运算,这在非脆弱 ABI 中不是恒定大小”如果我将 - 更改为+ 我得到一个不同的错误“二进制表达式的无效操作数('NSNumber *' 和 'NSNumber *')”我尝试过使用双精度数和许多事物的组合,但它不起作用。
NSNumber *userLatitude = [NSNumber numberWithDouble:43.55];//sample
NSArray *listOfCities = [managedObjectContext executeFetchRequest:request error:&error];
for (CityList *item in listOfCities){
NSLog(@"latitude is %@",item.latitude);
NSNumber *distanceLat = userLatitude - item.latitude;
然后,我会将它们与经度一起插入到可变数组中并比较距离。使用 CLLocation 的一种可能解决方案是
double distance = [usersCurrentLoc distanceFromLocation:otherLoc];
其中 usersCurrentLoc 和 otherLoc 都是 CLLocation 变量。我还想单独使用纬度和经度,这样我就可以进行一些自定义绘图,而且它们也单独存储,所以我想找出正确的数据类型和最有效的解决方案。
item.latitude 来自 core-data,数据模型类型为 double,X-code 自动生成 CityList 类,属性为 NSNumber * latitude;