How to play a Vimeo video in iOS?

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

    Please try this, It works for me, just some lines of code.

    - (void)viewDidLoad
    {
        [super viewDidLoad];
        vimeoHelper = [[VimeoHelper alloc] init];
        [vimeoHelper getVimeoRedirectUrlWithUrl:@"http://vimeo.com/52760742" delegate:(id)self];
    }
    
    - (void)finishedGetVimeoURL:(NSString *)url
    {
        _moviePlayerController = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:url]];
        [self presentViewController:_moviePlayerController animated:NO completion:nil];
    }
    

提交回复
热议问题