gpt4 book ai didi

ios - 当用户平移 map 时,iOS 6 中的 map 注释不会保持旋转

转载 作者:可可西里 更新时间:2023-11-01 03:47:47 25 4
gpt4 key购买 nike

真的很想回答这个问题https://devforums.apple.com/message/723468 .我无法发布详细信息,因为它是关于 iOS 6 的,并且是 Apple secret 。

请将答案/评论发布到 Apple Dev 论坛帖子,并在此处让我知道。

编辑:自 iOS6 正式发布以来:

在我的 ios6 之前的代码中,我这样做是为了在用户位置移动时旋转 map :

//this is in my MKMapViewDelegate
-(void) rotateMap:(MKMapView *)mapViewTmp forLocation:(MKUserLocation *) userLocation {
...
//calculate needed rotation
...
[mapViewTmp setTransform:CGAffineTransformMakeRotation(lastRotation)]; //rotate the MKMapView

for (id<MKAnnotation> annotation in mapViewTmp.annotations) {
MKAnnotationView* annotationView =[mapViewTmp viewForAnnotation:annotation];

[annotationView setTransform:CGAffineTransformMakeRotation(-lastRotation)]; //counter rotate the Annotation Views

[annotationView setNeedsDisplay]; //ios6
}

}

这很好用(1000 位用户)。

但是在 ios6 中(我在 2012 年 9 月 4 日更新了 Xcode/sdk),注释 View 不保持这种旋转(例如,如果 map 被平移)。它们会翻转回它们的非旋转状态(因为我的 map 是旋转的,这意味着它们会以一定角度而不是水平方式显示文本)。

代码确实临时旋转了注释,因此它们的文本显示为水平,但是如果 map 被平移(并且它们似乎也是其他原因),则注释翻转到它们的非旋转状态并且我的注释文本出现在一个角度相对于旋转的 map 。

旋转 MKAnnotationView 以使其在 IOS6 中保持旋转的正确方法是什么? MKMapView 中发生了什么变化导致了变化?

最佳答案

解决这个问题的方法是在 viewForAnnotation 方法中执行以下操作:

// iOS6 BUG WORKAROUND !!!!!!!
if (is6orMore) {
[annotationView setTransform:CGAffineTransformMakeRotation(.001)]; //any small positive rotation
}

这是我在原始问题中作为评论发布的,然后由 cristis 作为答案发布(引用我的评论),但我发布并接受我自己的答案,因为是我提出的。这有意义吗?

关于ios - 当用户平移 map 时,iOS 6 中的 map 注释不会保持旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12324765/

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