I have found a good animation effect from google (Hidden Property)
CATransition *transition = [CATransition animation];
transition.type = @"rippleEffect";
transition.duration = 1.0f;
transition.timingFunction = UIViewAnimationCurveEaseInOut;
[self.view.layer addAnimation:transition forKey:@"transitionViewAnimation"];
we can use suckEffect and spewEffect similarly
Loading
i used this effect in my project...
ReplyDeletethanks for this nice and valuable update