I'm working on an app using a lot of animation :). I use Auto Layout to layout the views. Then I use Core Animation to animate.
My question is what is the best practice in dealing the conflict between Auto Layout Constraints and Core Animation?
For instance, I have constraints to specify the position of a view. Then I use core animation to move this view 100pt down. The problem is after the animation completed, the Auto Layout constraints pull that view back to the original position.
What I was thinking is deactivate the constraints of that views and other views whose their position are depending on this view as well. Then go ahead and perform the Core Animation stuff.
Any thoughts? I really appreciate.
UPDATED: I just figured out. After Core Animation stuff finish, just update the the constraints's constants as well.