在iPhone应用程序中旋转MKMapView

我不想要任何代码但想要获得MKMapView罗盘旋转的参考,如http://vimeo.com/7970239所示。

任何人都可以告诉我这是否可能?

请帮我解决这个问题..

提前致谢…

这当然是可能的,这是使它工作的线:

[self.map setTransform:CGAffineTransformMakeRotation(-1 * newHeading.magneticHeading * M_PI / 180)];

为了接收标题事件,您需要创建一个CLLocationManager并执行[locationManager startUpdatingHeading];

希望它能帮到你