-2
次の番号のアニメーションを実装する方法をお尋ねしますか?お手伝いができることを祈っています。ありがとうございます!次のアニメーションの実装方法は?
それを達成するためにFacebookのポップを使用することができますか?
POPSpringAnimation *springAnimation = [POPSpringAnimation animationWithPropertyNamed:kPOPLayerBounds];
springAnimation.springSpeed = 0;
springAnimation.springBounciness = 20;
if (self.testView.frame.size.width == 100) {
springAnimation.toValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 50, 50)];
} else {
springAnimation.toValue = [NSValue valueWithCGRect:CGRectMake(0, 0, 100, 100)];
}
[self.testView.layer pop_addAnimation:springAnimation forKey:nil];
詳細を教えて、コードを表示できますか? –
スプリングアニメーションを使用して縮尺を変更できます。それは基本的にすべてです。 'PopSpring'の必要はなく、' UIView'にはネイティブのスプリングアニメーションがあります。 – Sulthan