猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
在Iphone UIImageView中添加动画Gif图像
我需要从UIImageview中的URL加载动画Gif图像。
当我使用普通代码时,图像没有加载。
有没有其他方法加载动画Gif图像?
长风秋雁
浏览 599
回答 3
3回答
偶然的你
UIImageView* animatedImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];animatedImageView.animationImages = [NSArray arrayWithObjects: [UIImage imageNamed:@"image1.gif"], [UIImage imageNamed:@"image2.gif"], [UIImage imageNamed:@"image3.gif"], [UIImage imageNamed:@"image4.gif"], nil];animatedImageView.animationDuration = 1.0f;animatedImageView.animationRepeatCount = 0;[animatedImageView startAnimating];[self.view addSubview: animatedImageView];您可以加载多个gif图像。您可以使用以下ImageMagick命令拆分您的gif :convert +adjoin loading.gif out%d.gif
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
iOS
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续