CGSize size = [UIImage imageNamed:@"匹配.gif"].size;
UIWebView *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 0, size.width, size.height)];
webView.center = self.view.center;
webView.userInteractionEnabled = NO;
webView.backgroundColor = [UIColor whiteColor];
[self.view addSubview:webView];
NSData *data = [NSData dataWithContentsOfFile:[[NSBundle mainBundle]pathForResource:@"匹配" ofType:@"gif"]];
[webView loadData:data MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];