我正在使用YTPlayerView
课程来播放YouTube
视频。下面是我用来根据设备屏幕尺寸加载视频的代码(iPad 大尺寸,iPhone 小尺寸)。它工作正常。
问题 -
当我将设备模式更改为横向时,我希望YTPlayerView
在纵向模式下更大。目前,两种屏幕模式的视频大小相同。
- (BOOL)loadWithPlayerParams:(NSDictionary *)additionalPlayerParams {
NSDictionary *playerCallbacks = @{
@"onReady" : @"onReady",
@"onStateChange" : @"onStateChange",
@"onPlaybackQualityChange" : @"onPlaybackQualityChange",
@"onError" : @"onPlayerError"
};
NSMutableDictionary *playerParams = [[NSMutableDictionary alloc] init];
[playerParams addEntriesFromDictionary:additionalPlayerParams];
if([UIDevice currentDevice].userInterfaceIdiom == UIUserInterfaceIdiomPad)
{
[playerParams setValue:@"551px" forKey:@"height"];
[playerParams setValue:@"768px" forKey:@"width"];
}
else
{
[playerParams setValue:@"250px" forKey:@"height"];
[playerParams setValue:@"320px" forKey:@"width"];
}
-----
-----
}
我不能使用此检查来查看更大的尺寸,因为上面的代码没有调用中间视频播放。
if([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscape)
你们知道如何解决这个问题吗?或者,如果有任何其他解决方案使用 JavaScript 和 css 作为 webView 的 html 字符串。