图片轮流显示

本文介绍如何使用UIImageView实现动画效果,通过创建一个图片数组并设置UIImageView的animationImages属性来轮流显示图片,实现动画播放。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

UIImageView内置的动画功能

原理:轮流显示一组图片

 1 #import "ViewController.h"
 2 
 3 @implementation ViewController
 4 
 5 - (void)viewDidLoad
 6 {
 7     [super viewDidLoad];
 8     
 9     NSMutableArray *array = [[NSMutableArray alloc]initWithCapacity:0];
10     for (int i = 1; i <= 10; i++) {
11         UIImage *img = [UIImage imageNamed:[NSString stringWithFormat:@"%d.png",i]];
12         [array addObject:img];
13     }
14     
15     UIImageView *imgView = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 320, 460)];
16     [self.view addSubview:imgView];
17     [imgView release];
18     imgView.animationImages = array;//图片数组
19     imgView.animationDuration = 1.75;//所有图片播放一次的总时间
20     imgView.animationRepeatCount = 0;//重复播放次数
21     [imgView startAnimating];//开始播放
22 }
23 @end

 

转载于:https://www.cnblogs.com/liushong/archive/2013/01/28/2880097.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值