我正在MKCircleView
上绘制MKMapView
叠加层。它工作得很好,除了我需要动画这个叠加层的绘制。
我知道我需要使用:
[UIView beginAnimations:nil context:NULL];
[UIView commitAnimations];
,但我不知道在哪里放这个动画代码。
感谢。
答案 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];