iOS UIImageView Gif 动画

     //设置gif图片的播放速率
    self.imageView.animationDuration = 1.0f;
    
    //设置gif图片数组
    self.imageView.animationImages = imageArray;
    
    //设置gif图片播放的重复次数,-1为无穷次
    self.imageView.animationRepeatCount = -1;
    
    //开始播放gif动画
    [self.imageView startAnimating];

posted @ 2016-06-07 10:00  tongyuling  阅读(533)  评论(0编辑  收藏  举报