使用UIWebView播放

// 设定位置和大小
CGRect frame = CGRectMake(50,50,0,0);
frame.size = [UIImage p_w_picpathNamed:@"xhr.gif"].size;
// 读取gif图片数据
NSData *gif = [NSData dataWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"xhr" ofType:@"gif"]];
// view生成
UIWebView *webView = [[UIWebView alloc] initWithFrame:frame];
webView.userInteractionEnabled = NO;//用户不可交互
[webView loadData:gif MIMEType:@"p_w_picpath/gif" textEncodingName:nil baseURL:nil];
[self.view addSubview:webView];