发现这段代码......
if(fabs([tempPlacemark getCoordinate].latitude-latitude) < latDelta && fabs([tempPlacemark getCoordinate].longitude-longitude)<longDelta )
...
在Math.h中引用它:
extern float fabsf(float);
extern double fabs(double);
extern long double fabsl(long double);
那我在看什么?
答案 0 :(得分:20)
double fabs( double )
- 返回参数的绝对值
NSLog(@"res: %.f", fabs(10)); //result 10
NSLog(@"res: %.f", fabs(-10)); //result 10