本文主要是介绍IOS学习之路二十四(UIImageView 加载gif图片),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
UIImageView 怎样加载一个gif图片我还不知道(会的大神请指教),不过可以通过加载不同的图片实现gif效果
代码如下:
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];
转载请注明:
新浪微博:http://weibo.com/u/3202802157
这篇关于IOS学习之路二十四(UIImageView 加载gif图片)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!