I was able to animate a constraint change using
[UIView animateWithDuration:0.5
delay:0.5
usingSpringWithDamping:0.7
initialSpringVelocity:0.7
options:0
animations:^{
[self.closeButton layoutIfNeeded];
} completion:NULL];
But I was under the impression that this could also be done using the Facebook POP library. Can anyone point me in the right direction to finding out how?
Thank you