NSString *name = @"ok.gif";
NSString *filePath = [[NSBundle bundleWithPath:[[NSBundle mainBundle] bundlePath]] pathForResource:name ofType:nil];
NSData *imageData = [NSData dataWithContentsOfFile:filePath];
imgview = [[UIImageView alloc] initWithImage: [UIImage sd_animatedGIFWithData:imageData]];
imgview.frame = CGRectMake([UIScreen mainScreen].bounds.size.width-50, [UIScreen mainScreen].bounds.size.height/2, 50, 50);
[self.view addSubview:imgview];
[self.view bringSubviewToFront: imgview];
UIImageView加载动态gif图片
最新推荐文章于 2024-08-27 10:24:45 发布