标签:动画uiview旋转
float begainAngle = 0.0f;
CGAffineTransform afterAngle = CGAffineTransformMakeRotation(begainAngle * (M_PI / 180.0f));
[UIView animateWithDuration:0.01 delay:0 options:UIViewAnimationOptionCurveLinear animations:^{
iConImage.transform = afterAngle;
} completion:^(BOOL finished) {
begainAngle += 2;
[self startAnimation];
}];
标签:动画uiview旋转
原文地址:http://zqlicoder1314.blog.51cto.com/3014999/1587177