-(POPSpringAnimation *)sizeAnimation:(NSValue*)toValue{
POPSpringAnimation *sizeAnimation = [POPSpringAnimation animationWithPropertyNamed:kPOPViewFrame];
sizeAnimation.toValue = toValue;
sizeAnimation.springBounciness = 10.0f;
sizeAnimation.dynamicsFriction = 30.0f;
return sizeAnimation;
}
I use this POPAnimation
to transform my View but it seems that the labels in the View did not animate follow their superView, looks strange.