Как добавить эффект отскока, когда я собираюсь показать UIImageView как подвью? Должен ли я использовать CoreAnimation для этого? Мое единственное предположение прямо сейчас - использовать CAKeyframeAnimation, пожалуйста, дайте мне знать, если есть лучший способ. Вот мой текущий код:
CABasicAnimation * theAnimation=[CABasicAnimation animationWithKeyPath:@"transform.translation.y"];
theAnimation.delegate = self;
theAnimation.duration = 1.0;
theAnimation.fromValue = [NSNumber numberWithFloat:notif.center.y];
theAnimation.toValue = [NSNumber numberWithFloat:notif.center.y-20];
theAnimation.repeatCount = 3;