IOS自得其乐系列(一)-------------------加载动态图片

 

 

此处使用文件  FLAnimatedImage   FLAnimatedImageView   中的方法傻瓜式加载动态图

 

  NSString *gifpath = [[NSBundle mainBundle] pathForResource:@"bear" ofType:@"gif"];

    FLAnimatedImage *image = [[FLAnimatedImage alloc] initWithAnimatedGIFData:[NSData dataWithContentsOfFile:gifpath]];         从本地加载

    FLAnimatedImage *image = [[FLAnimatedImage alloc] initWithAnimatedGIFData:[NSData dataWithContentsOfURL:[NSURL    URLWithString:@"http://imgsrc.baidu.com/forum/w%3D580%3B/sign=5e9f5015d209b3deebbfe460fc846d81/c2cec3fdfc039245de5916728494a4c27c1e25da.gif"]]];                                                                                   通过网址加载

    FLAnimatedImageView *imageView = [[FLAnimatedImageView alloc] init];

    imageView.animatedImage = image;

    imageView.frame = CGRectMake(50.0, 400, 250.0, 200.0);

posted @ 2015-01-21 15:10  小四也软开  阅读(164)  评论(0编辑  收藏  举报