博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS开发-Tom猫
阅读量:6081 次
发布时间:2019-06-20

本文共 1586 字,大约阅读时间需要 5 分钟。

//

//  ViewController.m

//  20-tom

//

//  Created by hongqiangli on 2017/8/1.

//  Copyright © 李洪强. All rights reserved.

//

 

#import "ViewController.h"

 

@interface ViewController ()

- (IBAction)drink;

- (IBAction)knock;

@property (weak, nonatomic) IBOutlet UIImageView *tomImageView;

 

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

    

    

}

 

 

- (void)didReceiveMemoryWarning {

    [super didReceiveMemoryWarning];

    // Dispose of any resources that can be recreated.

}

 

 

- (IBAction)drink {

    

    

    [self runAnimationWithCount:81 andName:@"drink"];

    

}

 

- (IBAction)knock {

    [self runAnimationWithCount:81 andName:@"knockout"];

}

 

- (void)runAnimationWithCount:(int)count andName:(NSString *)name{

    //判断动画是否执行

    if(_tomImageView.isAnimating){

        return;

    }

    //拿到图片

    NSMutableArray *imageMarr = [NSMutableArray array];

    for(int i = 0; i < count; i++){

        NSString *imageName = [NSString stringWithFormat:@"%@_%02d.jpg",name,i];

        NSString *imagePath = [[NSBundle mainBundle]pathForResource:imageName ofType:nil];

        UIImage *image = [UIImage imageWithContentsOfFile:imagePath];

        [imageMarr addObject:image];

    }

    

    //2.告诉imageView执行的时间

//    2.1动画执行的时间

    //每播放一张图片的时间为0.05

    CGFloat delat = 0.05;

    _tomImageView.animationDuration = delat *imageMarr.count;

    //2.3动画执行的次数

    _tomImageView.animationRepeatCount = 1;

    _tomImageView.animationImages = imageMarr;

    //3 开启动画

    [_tomImageView startAnimating];

    //动画执行完毕后,清空图片对象animationImages

    [self performSelector:@selector(clearCache) withObject:nil afterDelay:imageMarr.count *delat];

    

    

}

 

- (void)clearCache{

    

    _tomImageView.animationImages =nil;

    [_tomImageView setAnimationImages:nil];

}

 

@end

 

 

 

 

 

 

 

转载地址:http://jkkwa.baihongyu.com/

你可能感兴趣的文章
django连接Oracle过程中出现的问题
查看>>
第七周作业——基础
查看>>
tp框架之增删改查
查看>>
TextView改变颜色
查看>>
Android 项目中文件夹作用(res文件夹详细介绍)
查看>>
VC++排序 排序算法比较
查看>>
android studio本地gradle
查看>>
comet 推送消息到客户端
查看>>
Linux下一个进程可以开多少线程
查看>>
小错误汇总
查看>>
docker容器的两类存储
查看>>
从Controller到View(一)
查看>>
关于&、双引号、和单引号的解释
查看>>
LeetCode - Nth Digit
查看>>
background-clip&background-origin
查看>>
js读书笔记(2)
查看>>
修改表数据
查看>>
Web应用的目录结构
查看>>
jdk安装
查看>>
sendToTarget与sendMessage
查看>>