I am using this code to remove animate my UIView to the delete button on delete button press. Here\'s the code :
UIBezierPath *movePath = [UIBezierPath bezi
Try changing the opacity animation to:
CABasicAnimation *opacityAnim = [CABasicAnimation animationWithKeyPath:@"opacity"];
and then set the animation group's removeOnCompletion to NO and its fillMode to kCAFillModeForwards like Noah Witherspoon suggested.
removeOnCompletion
NO
fillMode
kCAFillModeForwards