In my program, I want to create an animation that will move at a constant speed. It appears that the animation starts slowly, speeds up and then finishes slowly. Is there any wa
You should use, that will solve your problem
[UIView animateWithDuration:duration delay:0 options:UIViewAnimationOptionCurveLinear animations:^{ //code with animation } completion:^(BOOL finished) { //code for completion }];