gpt4 book ai didi

xcode - Youtube 视频无法在 iPad 上全屏播放

转载 作者:行者123 更新时间:2023-12-03 05:32:31 26 4
gpt4 key购买 nike

我这里有一个问题,我还没有找到解决方案。

在我的应用程序中,我有一个 tableView 可以解析我 channel 中的 youtube 视频。如果选择一个项目,它会推送到 UIWebView,它会显示嵌入了我的视频的 youtube 网站。

但是,当我在 iPhone 上播放时,它会打开 native 全屏播放器。但在 iPad 上存在两个问题:

  • 它不会全屏打开,导航栏仍然可见。它也不是原生播放器,而是调整大小的 youtube 播放器。
  • 我的视频都是 1080p,但是在 iPad 上我只能选择 720p。

  • 这是我的 WebView 中的代码:
    #import "ViewController.h"
    #import <MediaPlayer/MediaPlayer.h>

    @interface ViewController ()

    @end

    @implementation ViewController
    @synthesize videoURL = _videoURL;

    - (void)viewDidLoad
    {
    [super viewDidLoad];
    NSURL *url = [NSURL URLWithString:self.videoURL];
    NSURLRequest *urlRequest = [NSURLRequest requestWithURL:url];
    [self.webView loadRequest:urlRequest];
    }

    - (void)didReceiveMemoryWarning
    {
    [super didReceiveMemoryWarning];
    }

    @end

    这里来自头文件:
    #import <UIKit/UIKit.h>

    @interface ViewController : UIViewController
    @property (weak, nonatomic) IBOutlet UIWebView *webView;
    @property (nonatomic, strong) NSString *videoURL;
    @end

    我怎样才能让它也能在 iPad 上使用 native 播放器?是否有可能直接打开视频而不显示 youtube 网站?我已经尝试选择和取消选择“允许内联渲染”而不改变行为。

    我感谢您的帮助...

    最佳答案

    这是我在 iPad 和 iPhone 上需要类似 Thumbnail -onTouch-> Fullscreen 的解决方案的链接。 https://stackoverflow.com/a/25695708/3397249

    关于xcode - Youtube 视频无法在 iPad 上全屏播放,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25529435/

    26 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com