MKMapView 中心坐标未返回正确的值

发布于 2024-10-07 18:49:29 字数 183 浏览 1 评论 0原文

在我的应用程序中,我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

岁月静好 2024-10-14 18:49:29

保存一个指针而不是坐标中的两个浮点数?不保存为浮动?

Saving a pointer instead of the two floats in the coordinate? Not saving as a float?

凉栀 2024-10-14 18:49:29

听起来你不小心输错了双变量。当您将其添加到字典中以存储为 plist 时,请务必将其从 double 转换为 NSNumber,如下所示:

[myDictionary addObject:[NSNumber numberWithDouble:latitude] forKey:@"latitude"];

当您检索它时,将其从 NSNumber 转换为 double:

double latitude = [[myDictionary objectForKey:@"latitude"] doubleValue];

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:

[myDictionary addObject:[NSNumber numberWithDouble:latitude] forKey:@"latitude"];

and when you retrieve it, transform it from an NSNumber to a double:

double latitude = [[myDictionary objectForKey:@"latitude"] doubleValue];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文