菜鸟教程小白 发表于 2022-12-13 13:37:07

ios - 全屏播放 YouTube 视频


                                            <p><p>我想使用 YouTube 助手 <a href="https://github.com/youtube/youtube-ios-player-helper" rel="noreferrer noopener nofollow">https://github.com/youtube/youtube-ios-player-helper</a>在我的应用中播放 YouTube 视频。我想在表格 View 单元格中显示 YTPlayerView,当点击视频时,我希望它开始以全屏模式播放。
但是,当我试用 YouTube 助手时,它会内联播放视频并且不会扩展到全屏。
有什么方法可以让视频立即全屏播放 YouTube 助手? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>其实这很容易。这是在表格单元格中显示 YTPlayerView 的代码。点击 YouTube 缩略图以全屏播放。 </p>

<p>创建自定义表格 View 单元格。在 Interface Builder 中,将 View 拖到您的单元格中,将类更改为 YTPlayerView 并将其连接到您的单元格的 playerView 属性。 </p>

<pre><code>#import &lt;UIKit/UIKit.h&gt;
#import &#34;YTPlayerView.h&#34;
@interface VideoCellTableViewCell : UITableViewCell
@property (nonatomic, strong) IBOutlet YTPlayerView *playerView;
@property (assign) BOOL isLoaded;
@end
</code></pre>

<p>在您的 ViewController 中:</p>

<pre><code>- (UITableViewCell *)tableView:(UITableView *)tableView    cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    VideoCellTableViewCell *cell = (VideoCellTableViewCell *) ;
    ;
    if (!cell.isLoaded) {
       ;
       cell.isLoaded = YES;
   }
   else {
         // avoid reloading the player view, use cueVideoById instead
         ;
   }
return cell;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 全屏播放 YouTube 视频,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/34794303/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/34794303/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 全屏播放 YouTube 视频