1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| - (void)viewDidLoad { [super viewDidLoad]; UILongPressGestureRecognizer *longPress=[[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPress:)]; [_imageView addGestureRecognizer:longPress]; } -(void)longPress:(UILongPressGestureRecognizer *)longPress { if (longPress.state==UIGestureRecognizerStateBegan) { CAKeyframeAnimation *anim=[CAKeyframeAnimation animation]; anim.keyPath=@"transform.rotation"; anim.values=@[@(angle2radian(-5)),@(angle2radian(5)),@(angle2radian(-5))]; anim.repeatCount=MAXFLOAT; anim.duration=0.5; [_imageView.layer addAnimation:anim forKey:nil]; } }
|