ios – 使用Facebook pop的动画限制?

前端之家收集整理的这篇文章主要介绍了ios – 使用Facebook pop的动画限制?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我能够使用约束更改设置动画
[UIView animateWithDuration:0.5
                      delay:0.5
     usingSpringWithDamping:0.7
      initialSpringVelocity:0.7
                    options:0
                 animations:^{
                     [self.closeButton layoutIfNeeded];
                 } completion:NULL];

但我的印象是,这也可以使用Facebook POP库完成.任何人都可以指出我正确的方向找出如何?

谢谢

解决方法

在这种情况下,您希望为NSLayoutConstraint设置动画,您可以使用POP执行以下操作,它将为约束设置动画.
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,如上所示.

原文链接:https://www.f2er.com/iOS/332705.html

猜你在找的iOS相关文章