GIF图的播放

xiaoxiao2021-02-28  75

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

转载请注明原文地址: https://www.6miu.com/read-59606.html

最新回复(0)