如何在MKMapView中为叠加绘制设置动画

时间:2012-03-08 18:26:16

标签: ios animation map

我正在MKCircleView上绘制MKMapView叠加层。它工作得很好,除了我需要动画这个叠加层的绘制。

我知道我需要使用:

[UIView beginAnimations:nil context:NULL];
[UIView commitAnimations];

,但我不知道在哪里放这个动画代码。

感谢。

1 个答案:

答案 0 :(得分:1)

不确定你在寻找什么..但是例如:

[UIView beginAnimations:@"fade" context:nil];
[UIView setAnimationDuration:0.6f];
theView.alpha = 0.0f;
theView.transform = CGAffineTransformMakeScale(0.01,0.01);
theView.alpha = 1.0f;
[UIView commitAnimations];