MKMapView 中心坐标未返回正确的值
在我的应用程序中,我将 MKMapView 中的坐标保存到属性列表中。用户点击“保存”后,我将选择视图的中心坐标设置为主视图上的中心坐标,然后将 mapView.centerCoodinate.latitude 和 longitude 保存到 pList 中。然而,这给了我一个像“1078114215”这样的值,地图上说它不是有效坐标。我做错了什么?
In my app, I am saving coordinates from an MKMapView into a property list. After the user hits "save" I set the center coordinate of the selection view to that on the main view, and then save the mapView.centerCoodinate.latitude and longitude into a pList. However, this gives me a value like "1078114215" which the map says is not a vail coordinate. What am I doing wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
保存一个指针而不是坐标中的两个浮点数?不保存为浮动?
Saving a pointer instead of the two floats in the coordinate? Not saving as a float?
听起来你不小心输错了双变量。当您将其添加到字典中以存储为 plist 时,请务必将其从 double 转换为 NSNumber,如下所示:
当您检索它时,将其从 NSNumber 转换为 double:
Sounds like you're accidentally mis-typing your double variable. When you add it to your dictionary to be stored as a plist be sure to transform it from a double to an NSNumber like this:
and when you retrieve it, transform it from an NSNumber to a double: