0

アプリケーションを起動して mainViewController から FlipSideViewController に移動すると、flipSideViewController の画像ビューがアニメーション化されます。ユーザーがmainViewControllerからflipSideViewControllerに移行するたびにアニメーション化したいと思います。

ここにいくつかのコードがあります:

[self animate];
//Not sure where to put this instance method. Would I put this in a certain method? I have no idea what I would write for it!

- (void)animate 
{
    CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath:@"transform.rotation"];
    animation.toValue = [NSNumber numberWithFloat:((-10*M_2_PI)/180)];
    animation.duration = .3;
    animation.autoreverses = YES;
    animation.repeatCount = 4;
    animation.speed = 9;
    pwAnimation.removedOnCompletion = YES;
    [_ImageView.layer addAnimation:pwAnimation forKey:@"rotation"];
}
4

1 に答える 1

0

flipSideViewControllerのViewDidAppearデリゲートメソッドを使用して、-animateメソッドを呼び出します

于 2012-11-19T07:12:34.840 に答える