2019独角兽企业重金招聘Python工程师标准>>>
UIWebView *webView = [[UIWebView alloc]initWithFrame:CGRectMake(0, 100, 100, 100)];
webView.scalesPageToFit = YES;
[webView loadData:[NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"run" ofType:@"gif"]] MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];
[self.view addSubview:webView];