+ と - 現在の経度にいくつかの値を追加したい:
NSNumber *Latitude = [[NSNumber alloc] initWithDouble:location.latitude];
NSNumber *Longitude = [[NSNumber alloc] initWithDouble:location.longitude];
NSLog(@"Numbers:%@ %@", Latitude, Longitude);
2012-11-19 08:31:52.740 SR Navigatie[16748:907] Numbers:52.17401375095112 4.98983223979254
NSString または NSNumber を LatMin、LatMax、LonMin、LonMax にしたいと考えています。
したがって、Latmin には - 0.005、LatMax +0.005、LonMin -0.005、LonMax +0.005 を使用したいと考えています。
誰でもこれを行う方法を知っていますか。
前もって感謝します