Embed video from youtube.com into iphone app

前端 未结 6 575
耶瑟儿~
耶瑟儿~ 2021-02-04 19:42

i\'m trying to embed youtube video into my iphone application. I\'m using UIWebView and loading embed code from youtube as html string. So i have a layout with basic html markup

6条回答
  •  伪装坚强ぢ
    2021-02-04 19:51

    If anyone is still facing this problem, below is by far the best solution I have seen. Works like a charm

            self.webView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 10,300, 200)];
            [self.webView setAllowsInlineMediaPlayback:YES];
            [self.webView setMediaPlaybackRequiresUserAction:NO];
    
            [self.view addSubview:self.webView];
    
            NSString* embedHTML = [NSString stringWithFormat:@"\
                                   \
                                        \
                                            \
                                            \