Animated GIF alternative for iOS

后端 未结 4 567
遇见更好的自我
遇见更好的自我 2021-02-06 13:51

\"Back in the day\" animated GIFs were ubiquitous online.

They were simple to use - just pop em\' in wherever you want an animated image.

I\'d like to display a

4条回答
  •  借酒劲吻你
    2021-02-06 14:02

    You can use UIWebView to load html Page with in Bundle. GO TO File > New>Others > Empty > Enter File Name with Extension

    
    
        
         QUALITY PLACEMENTS
    
    
    
    
    //IOS CODE UIWebView* mywebview=[[UIWebView alloc]initWithFrame:CGRectMake(5, 50, 300, 300)]; mywebview.scalesPageToFit = NO; mywebview.scrollView.hidden = NO; [mywebview setMultipleTouchEnabled:YES]; NSURL* url=[NSURL fileURLWithPath:[[NSBundle mainBundle] pathForResource:@"greeting" ofType:@"html"]]; [mywebview loadRequest:[NSURLRequest requestWithURL:url]];

提交回复
热议问题