国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > iOS > 正文

iOS動畫-定時對UIView進行翻轉和抖動的方法

2020-07-26 02:50:30
字體:
來源:轉載
供稿:網友

(翻轉)方式一:

[NSTimer scheduledTimerWithTimeInterval:3.f repeats:YES block:^(NSTimer * _Nonnull timer) {      CABasicAnimation* rotationAnimation = [CABasicAnimation animation];;      rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.y"];      rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];      rotationAnimation.duration = 1;      // 切換界面保證動畫不停止      rotationAnimation.removedOnCompletion = NO;      rotationAnimation.repeatCount = 1;      [self.bindCardImageView.layer addAnimation:rotationAnimation forKey:@"rotationAnimation"];    }];

(翻轉)方式二(這種方式較好一些):

CABasicAnimation *waitAnimation = [CABasicAnimation animation];    waitAnimation.toValue = [NSNumber numberWithFloat:1.0];    waitAnimation.duration = 3.f;    waitAnimation.beginTime = 3.f;    CABasicAnimation* rotationAnimation = [CABasicAnimation animationWithKeyPath:@"transform.rotation.y"];    rotationAnimation.toValue = [NSNumber numberWithFloat: M_PI * 2.0 ];    rotationAnimation.duration = 1.f;    CAAnimationGroup *group = [CAAnimationGroup animation];    group.duration = 4.f;    group.repeatCount = CGFLOAT_MAX;    group.removedOnCompletion = NO;    [group setAnimations:@[waitAnimation, rotationAnimation]];    [self.bindCardImageView.layer addAnimation:group forKey:@"bindCardImageViewAnimation"];

抖動:

CABasicAnimation* shake = [CABasicAnimation animationWithKeyPath:@"transform.rotation.z"];  //設置抖動幅度  shake.fromValue = [NSNumber numberWithFloat:-0.2];  shake.toValue = [NSNumber numberWithFloat:+0.2];  shake.duration = 0.1;  shake.autoreverses = YES; //是否重復  shake.repeatCount = 3;  [itemView.iconImageView.layer addAnimation:shake forKey:@"imageView"];

以上這篇iOS動畫-定時對UIView進行翻轉和抖動的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持武林網。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 辽源市| 紫阳县| 临沂市| 福安市| 清河县| 崇义县| 武定县| 大理市| 西林县| 南漳县| 湖口县| 庆元县| 深州市| 巧家县| 天柱县| 梧州市| 绥棱县| 白朗县| 江山市| 当雄县| 吉林省| 怀集县| 诸城市| 凤冈县| 昭通市| 元氏县| 宁安市| 玉山县| 监利县| 韶关市| 长沙县| 和静县| 东乡| 大姚县| 阿勒泰市| 栾城县| 兖州市| 公主岭市| 凉山| 东至县| 蒙山县|