现在的位置: 首页 > 综合 > 正文

旋转动画 uiview animation rotate

2013年09月16日 ⁄ 综合 ⁄ 共 431字 ⁄ 字号 评论关闭

#import <QuartzCore/QuartzCore.h>


[UIViewbeginAnimations:@"animationID"context:nil];

[UIViewsetAnimationDuration:0.5f];

[UIViewsetAnimationCurve:UIViewAnimationCurveEaseInOut];

[UIViewsetAnimationRepeatAutoreverses:NO]

indicateImageView.layer.anchorPoint=CGPointMake(0.5,0.5);
 

 indicateImageView.transform =CGAffineTransformMakeRotation([selfradians:0]);

[UIViewcommitAnimations];



-(double)radians:(double)degrees 

{

return degrees *M_PI/180;  

}

抱歉!评论已关闭.