1
float degrees = -30.0;
float radians = (degrees/180.0) * M_PI;

[UIView animateWithDuration:0.5 animations:^
 {
     bottomRoundedView.transform = CGAffineTransformMakeRotation(radians);
 }
 ];
4

1 に答える 1