facebookarchive / pop

An extensible iOS and OS X animation library, useful for physics-based interactions.
Other
19.66k stars 2.88k forks source link

Spring animation not working anymore following iOS 13 update #424

Closed babkouew closed 4 years ago

babkouew commented 4 years ago

Hi, POPSpringAnimation is not working anymore under iOS13, the imageView appears but there is no animation anymore. Could you please check what's going on? Thanks

pengkun commented 4 years ago

same problem

easoncodes commented 4 years ago

same problem

[POPBasicAnimation animationWithPropertyNamed:kPOPViewFrame];
pengkun commented 4 years ago

同样的问题

[POPBasicAnimation animationWithPropertyNamed:kPOPViewFrame];

我发现直接将pop源码拉进项目里使用不会崩溃

Dr-Bootman commented 4 years ago

that's a conflict with autolayout probably try to set: translatesAutoresizingMaskIntoConstraints = YES for view you are animating

babkouew commented 4 years ago

You, my good Sir, just solved our issue and have my gratitude.