ios – 动画GIF无法在iPhone上运行

前端之家收集整理的这篇文章主要介绍了ios – 动画GIF无法在iPhone上运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用cell.image =一个动画gif文件(单元格是UITableViewCell).但是,它没有动画.有什么办法可以解决吗?

解决方法

UI ImageView提供必要的API来生成您自己的动画,如下所示:
UIImage *frame1 = [UIImage imageNamed:@"frame1.png"];
UIImage *frame2 = [UIImage imageNamed:@"frame2.png"];
UIImage *frame3 = [UIImage imageNamed:@"frame3.png"];
UIImage *frame4 = [UIImage imageNamed:@"frame4.png"];


UIImageView.animationImages = [[NSArray alloc] initWithObjects:frame1,frame2,frame3,frame4,nil];
UIImageView.animationDuration = 1.0 //defaults is number of animation images * 1/30th of a second
UIImageView.animationRepeatCount = 5; //default is 0,which repeats indefinitely
[UIImageView startAnimating];

//[uiImageView stopAnimating];
原文链接:https://www.f2er.com/iOS/332649.html

猜你在找的iOS相关文章