码迷,mamicode.com
首页 > 其他好文 > 详细

动态图片加到UIImageView中

时间:2015-09-17 01:04:51      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

//1.添加一个.gif类型的动态的图片,用到URLForResource方法,gif是图片的格式,FlagZombie是图片的名字

@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];
   
    NSURL *url = [[NSBundle mainBundle] URLForResource:@"FlagZombie" withExtension:@"gif"];
    UIImage *img = [UIImage animatedImageWithAnimatedGIFURL:url];
    //创建一个UIImageView类型的对象
    UIImageView *iv = [[UIImageView alloc]init];
    iv.image = img;//把这个对象的image属性设置为img
    iv.frame = CGRectMake(50, 50, 200, 150);
    [self.view addSubview:iv];
}
- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}
@end

技术分享

//需要完成功能还需要在文件中添加第三方库,库在我的文件中有。

动态图片加到UIImageView中

标签:

原文地址:http://www.cnblogs.com/wanghengheng/p/4814878.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!