gpt4 book ai didi

iphone - 健全性检查 MKCo整理区域

转载 作者:行者123 更新时间:2023-12-03 18:43:49 25 4
gpt4 key购买 nike

有什么方法可以快速测试MKCooperativeRegion是否良好?我将纬度换成了经度并导致应用程序崩溃。我希望能够在实际执行之前看看是否可以执行 setRegionMKCooperativeRegionMake 会测试我给它的值吗?

谢谢。

最佳答案

事实证明我在某处交换了纬度和经度。这是我最终使用的代码:

// check for sane span values
if (currentRegion.span.latitudeDelta <= 0.0f || currentRegion.span.longitudeDelta <= 0.0f) {
currentRegion.span.latitudeDelta = 1.0f;
currentRegion.span.longitudeDelta = 1.0f;
}
// check for sane center values
if (currentRegion.center.latitude > 90.0f || currentRegion.center.latitude < -90.0f ||
currentRegion.center.longitude > 180.0f || currentRegion.center.longitude < -180.0f
) {
// Take me to Tokyo.
currentRegion.center.latitude = 35.4f;
currentRegion.center.longitude = 139.4f;
}

关于iphone - 健全性检查 MKCo整理区域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2184675/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com