iOS 如何正常显示本地Gif图

核心代码:

//读取gif数据
NSData *gifData = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"2016042218051891.gif" ofType:nil]];
UIWebView *webView = [[UIWebView alloc] initWithFrame:frame]; // 自己设置尺寸大小
//取消回弹效果
webView.scrollView.bounces = NO;
webView.backgroundColor = [UIColor clearColor];
//设置缩放模式
webView.scalesPageToFit = YES;
//用webView加载数据
[webView loadData:gifData MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];
// 最后添加到需要添加的视图位置就行了,例如:
[self.content_gifView addSubview:webView];

你可能感兴趣的:(iOS 如何正常显示本地Gif图)