利用图片序列创建动态图片效果_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 利用图片序列创建动态图片效果

利用图片序列创建动态图片效果

 2014/12/2 10:26:18  粉粉色  程序员俱乐部  我要评论(0)
  • 摘要:代码:-(void)viewDidLoad{[superviewDidLoad];//Doanyadditionalsetupafterloadingtheview.//显示图片的UIImageViewUIImageView*imageview=[[UIImageViewalloc]initWithFrame:CGRectMake(50,100,200,200)];imageview.backgroundColor=[UIColorredColor];[self.viewaddSubview
  • 标签:创建 图片 利用

代码:

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    
    
    //显示图片的UIImageView
    UIImageView *imageview=[[UIImageView alloc]initWithFrame:CGRectMake(50, 100, 200, 200)];
    imageview.backgroundColor=[UIColor redColor];
    [self.view addSubview:imageview];
    
    //动画的实现
    NSMutableArray * images = [NSMutableArray arrayWithCapacity:6];
    for (int i = 1; i <= 6; i++)
    {
        NSString * imageName = [NSString stringWithFormat:@"%d.jpg",i];
        UIImage * image = [UIImage imageNamed:imageName];
        
        [images addObject:image];
    }
    imageview.animationImages = images;
    imageview.animationDuration = 0.3;
    [imageview startAnimating];

}

 

发表评论
用户名: 匿名