码迷,mamicode.com
首页 > 其他好文 > 详细

简单动画

时间:2016-05-27 14:43:19      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

风火轮(菊花加载)

1 // 加载旋转的菊花效果[UIActivityIndicatorView实现加载风火轮效果]
2 // 无需设置frame
3 UIActivityIndicatorView *indicatorView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleWhiteLarge];
4 indicatorView.center = self.view.center;
5 [self.view addSubview:indicatorView];
6 
7 // 将风火轮启动
8 [indicatorView startAnimating];

Gif动画

 1 // 创建显示图片的ImageView
 2     UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 100, 400, 200)];
 3     [self.view addSubview:imgView];
 4     // 创建一个存储图片的数组
 5     NSMutableArray *saveImageArray = [NSMutableArray array];
 6     for (int i = 1; i < 12; i++) {
 7         NSString *imageName = [NSString stringWithFormat:@"2288dce40fe3c6723acdba8bd7177c73-%d(被拖移).tiff", i];
 8         UIImage *image = [UIImage imageNamed:imageName];
 9         [saveImageArray addObject:image];
10     }
11     // 设置GIF图片组
12     imgView.animationImages = saveImageArray;
13     // 设置播放速率
14     imgView.animationDuration = 1.0f;
15     // 设置播放次数(-1是无限播放)
16     imgView.animationRepeatCount = -1;
17     // 开启GIF动画
18     [imgView startAnimating];

 

简单动画

标签:

原文地址:http://www.cnblogs.com/crazygeek/p/5534409.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!