Tagicon shaking animation

Shaking Animation of an UIView

S

  Hello friends, Here we will learn how to add shaking animation to an UIView. It’s just an CABasicAnimation, CABasicAnimation* anim = [CABasicAnimation animationWithKeyPath:@”transform.rotation”]; [anim setToValue:[NSNumber numberWithFloat:0.0f]]; [anim setFromValue:[NSNumber numberWithDouble:M_PI/30]]; // rotation angle [anim setDuration:0.1]; [anim...

Category