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

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

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

2019-10-21 18:46:49
字體:
來源:轉載
供稿:網(wǎng)友

(翻轉)方式一:

[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進行翻轉和抖動的方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持VEVB武林網(wǎng)。


注:相關教程知識閱讀請移步到IOS開發(fā)頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 北海市| 宁海县| 化隆| 汨罗市| 樟树市| 丰县| 城口县| 渭南市| 宁南县| 乳源| 科尔| 彝良县| 紫金县| 台州市| 澄城县| 田林县| 文登市| 莲花县| 西昌市| 大丰市| 宁明县| 酒泉市| 巴南区| 宁武县| 遂昌县| 丰镇市| 德庆县| 武陟县| 新野县| 葫芦岛市| 新泰市| 类乌齐县| 四川省| 赣州市| 无极县| 武宁县| 竹北市| 长沙市| 富锦市| 蕲春县| 伊春市|