アプリケーションを起動して 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"];
}