OStack程序员社区-中国程序员成长平台

标题: ios - 全屏播放 YouTube 视频 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 13:37
标题: ios - 全屏播放 YouTube 视频

我想使用 YouTube 助手 https://github.com/youtube/youtube-ios-player-helper在我的应用中播放 YouTube 视频。我想在表格 View 单元格中显示 YTPlayerView,当点击视频时,我希望它开始以全屏模式播放。 但是,当我试用 YouTube 助手时,它会内联播放视频并且不会扩展到全屏。 有什么方法可以让视频立即全屏播放 YouTube 助手?



Best Answer-推荐答案


其实这很容易。这是在表格单元格中显示 YTPlayerView 的代码。点击 YouTube 缩略图以全屏播放。

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

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

在您的 View Controller 中:

- (UITableViewCell *)tableViewUITableView *)tableView    cellForRowAtIndexPathNSIndexPath *)indexPath
{
    VideoCellTableViewCell *cell = (VideoCellTableViewCell *) [tableView dequeueReusableCellWithIdentifier"VideoCell" forIndexPath:indexPath];
    [cell.playerView stopVideo];
    if (!cell.isLoaded) {
       [cell.playerView loadWithVideoId"your video ID"];
       cell.isLoaded = YES;
     }
     else { 
         // avoid reloading the player view, use cueVideoById instead
         [cell.playerView cueVideoById"your video ID" startSeconds:0 suggestedQuality:kYTPlaybackQualityDefault];
     }
return cell;
}

关于ios - 全屏播放 YouTube 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34794303/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4