我有一个 UITextField,我想在那里打印我的 GPS 位置,作为测试,我创建了一个位置:
CLLocationCoordinate2D myPos;
myPos.latitude = 38.990603;
myPos.longitude= -1.858964;
NSLog(@"%f %f", myPos.latitude, myPos.longitude);
这可行,但现在,我想将值添加到 UITextView:
self.myUITextField.text = [NSString stringWithFormat:(@"%f %f", myPos.latitude, myPos.longitude)];
这是一个错误:
Sending 'CLLocationDegrees' (aka 'double') to parameter of incompatible type 'NSString *'
如何将 CLLOcationDegrees 值打印到 UITextField 中?
先感谢您