我从 GPS 获取坐标,需要构建一个如下所示的小字符串:
NSString *location = @"40.7,-73.9";
我现在的代码是
NSString *latitude = [NSString stringWithFormat:@"%f", [LocationFinder
singleton].location.coordinate.latitude];
NSString *longtitude = [NSString stringWithFormat:@"%f", [LocationFinder
singleton].location.coordinate.latitude];
// Of course this doesn;t work
NSString *location = latitude, logtitude;
现在我知道我可以执行 NSMutablestring 和追加,但我只是想知道是否有一个非常有效的方法来执行此过程。来自 .NET 和 Java,我讨厌 Obj C,因为它有这种怪异之处。