注:Gif要做成你需要的尺寸,webView是不能改变Gif图片的尺寸的;
// 设定位置和大小
CGRect frame = CGRectMake(50,50,0,0);
frame.size = [UIImage imageNamed:@"guzhang.gif"].size;
// 读取gif图片数据
NSData *gif = [NSData dataWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"guzhang" ofType:@"gif"]];
// view生成
UIWebView *webView = [[UIWebView alloc] initWithFrame:frame];
webView.userInteractionEnabled = NO;//用户不可交互
[webView loadData:gif MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];
[self.window addSubview:webView];
[webView release];
转载:http://blog.csdn.net/mitianbingshi/article/details/18729857 QQ技术交流答疑群号:209476515

943

被折叠的 条评论
为什么被折叠?



