解决方法
在这种情况下,您希望为NSLayoutConstraint设置动画,您可以使用POP执行以下操作,它将为约束设置动画.请注意,POPSpringAnimation正被添加到约束本身.
NSLayoutConstraint *constraint = // this is an NSLayoutConstraint that is applied to some view POPSpringAnimation *layoutAnimation = [POPSpringAnimation animationWithPropertyNamed:kPOPLayoutConstraintConstant]; layoutAnimation.springSpeed = 20.0f; layoutAnimation.springBounciness = 15.0f; layoutAnimation.toValue = @(value to go too); [constraint pop_addAnimation:layoutAnimation forKey:@"detailsContainerWidthAnimate"];
要使用的主要属性是kPOPLayoutConstraintConstant,如上所示.因此,如果要在自动布局约束上执行此操作,可以使用此约束属性.
使用缩放和其他属性也适用于AutoLayout,因此您不应该让POP与AutoLayout一起使用.