How to play a Vimeo video in iOS?

前端 未结 7 1693
清歌不尽
清歌不尽 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:38

    I've used this code:

    NSString *embedSr = @"";
    
    [[self WebView] loadHTMLString:embedSr baseURL:nil];
    

提交回复
热议问题