How to play a Vimeo video in iOS?

前端 未结 7 1697
清歌不尽
清歌不尽 2020-12-16 09:09

I\'ve tried to search to web, but I couldn\'t find a topic not older than 1 year regarding this problem, therefore;

How can I play a Vimeo video in an iOS App?

7条回答
  •  死守一世寂寞
    2020-12-16 09:24

    Use Below Code the it will work fine

    NSMutableString *html = [[NSMutableString alloc] initWithCapacity:1] ;
    [html appendString:@""];
    [html appendString:@""];
    [html appendString:@""];
    [html appendString:@""];
    [html appendString:@""];
    
    
    [viewWeb loadHTMLString:html baseURL:urlMovie];
    

提交回复
热议问题