How to play a Vimeo video in iOS?

前端 未结 7 1657
清歌不尽
清歌不尽 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 = @"<iframe width=\"304\"height=\"350\" src=\"http://player.vimeo.com/video/... \" frameborder=\"0\" allowfullscreen></iframe>";
    
    [[self WebView] loadHTMLString:embedSr baseURL:nil];
    
    0 讨论(0)
提交回复
热议问题