手机
当前位置:查字典教程网 >编程开发 >IOS开发 >仿iOS图标抖动
仿iOS图标抖动
摘要:仿iOS图标抖动#import"LHViewController.h"#defineangelToRandian(x)((x)/180.0*...

仿iOS图标抖动

#import "LHViewController.h" #define angelToRandian(x) ((x)/180.0*M_PI) @interface LHViewController () @property (strong, nonatomic) IBOutlet UIImageView *imageView; @end @implementation LHViewController - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. UILongPressGestureRecognizer* longPress=[[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPress:)]; [self.imageView addGestureRecognizer:longPress]; } -(void)longPress:(UILongPressGestureRecognizer*)longPress { if (longPress.state==UIGestureRecognizerStateBegan) { CAKeyframeAnimation* anim=[CAKeyframeAnimation animation]; anim.keyPath=@"transform.rotation"; anim.values=@[@(angelToRandian(-7)),@(angelToRandian(7)),@(angelToRandian(-7))]; anim.repeatCount=MAXFLOAT; anim.duration=0.2; [self.imageView.layer addAnimation:anim forKey:nil]; self.btn.hidden=NO; } } - (IBAction)delete:(id)sender { [self.imageView removeFromSuperview]; [self.btn removeFromSuperview]; } @end

以上所述就是本文的全部内容了,希望大家能够喜欢。

【仿iOS图标抖动】相关文章:

微信支付开发IOS图文教程案例

iOS开发:Git流程

提高iOS开发效率的小技巧与思路

iOS微信支付开发案例

iOS 捕获程序崩溃日志

谈一谈iOS单例模式

仿IOS效果 带弹簧动画的ListView

iOS实现图片轮播效果

iOS实现压缩图片上传功能

浅析iOS给图片加水印的方法

精品推荐
分类导航