iOS 학습 재생 gif 애니메이션

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];

좋은 웹페이지 즐겨찾기