码迷,mamicode.com
首页 > Web开发 > 详细

UIWebView显示gif类型图片

时间:2014-06-20 16:16:58      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   ext   color   

 NSData *gifFile = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"text" ofType:@"gif"]];
    _mywebview.scalesPageToFit = YES;
    [_mywebview loadData:gifFile MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];

  html

      NSString *html = @"<html><head><body><img src=\"text.gif\"><body></head></html>";
    NSString *path = [[NSBundle mainBundle] resourcePath];
    NSURL *baseURL = [NSURL fileURLWithPath:path];
    //_mywebview.scrollView.bounces = NO;
    _mywebview.scalesPageToFit = YES;
    //_mywebview.scrollView.scrollEnabled = NO;
    [_mywebview loadHTMLString:html baseURL:baseURL];

 

UIWebView显示gif类型图片,布布扣,bubuko.com

UIWebView显示gif类型图片

标签:style   class   blog   code   ext   color   

原文地址:http://www.cnblogs.com/lovemm/p/3796803.html

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