In my app I have a storyboard and I use "autolayout" option; The problem is if I move some UIImageView with an animation in this way:
[UIView animateWithDuration:1.0 animations:^{
[image setCenter:CGPointMake(300,200)];
}];
when the animation finish the image return in the original position, why??? If I not check autolayout option it work fine. Can you tell me if I can manage animation with autolayout? And what's the way to do it?