码迷,mamicode.com
首页 > 移动开发 > 详细

IOS 图片播放案例

时间:2015-08-18 16:15:10      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:

#import "ViewController.h"

@interface ViewController ()
@property (weak,nonatomic) IBOutlet UIImageView *tupianView;
@end
@implementation ViewController
-(IBAction) PressBtn:(id) sender {
    // 把所有的图片都放在集合中
    NSMutableArray *images =[[NSMutableArray alloc ] init];  
    //把所有的图片都加在内存中
    for(int i =0;i<20;i++)
    {
     //循环获取到20张图片
        NSString *imgName =[NSString stringWithFormat:@"图片名称_%02d.jpg",i]; 10 
     //获取图片对象
      UIImage *img   =[UIImage   imageNamed:imgName];13   
     //把每一张图片都放到集合中
      [images addObjcedt:img];
   }
// 给图片设定动画
_tupianView.animationImages =images;
//设定动画时长,每个图片*0.05秒
_tupianView.animationDuration =images.count *0.05;
// 重复次数 
_tupianView.animationRepeatCount=1;
//播放动画
[_tupianView startAnimating];
}

 

 

IOS 图片播放案例

标签:

原文地址:http://www.cnblogs.com/zzgt/p/4739500.html

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