CATransition *animation = [CATransition animation]; animation.type = @"suckEffect"; animation.duration = 1.0f; animation.delegate = self; animation.timingFunction = UIViewAnimationCurveEaseInOut; [[tableView cellForRowAtIndexPath:indexPath].layer addAnimation:animation forKey:@"transitionViewAnimation"];
can any body tell me what are the other types of animations to animate table cell....