web页面中的视频横竖屏

2017-03-22  本文已影响0人  飞天蛤蟆

import "ViewController.h"

import "AppDelegate.h"

@interface ViewController ()<UIWebViewDelegate>{
AppDelegate *app;
}

@end

@implementation ViewController

-(void)playerWillExitFullscreen:(id)sender{
NSLog(@"退出播放视频了");
app.isFull=NO;

/**
 下边方法的使用场景:
 如果点击视频,自动旋转为横屏播放状态,点击完成按钮,需要是程序变为竖屏状态,需要下边的代码
 */
UIViewController *vc = [[UIViewController alloc]init];
[self presentViewController:vc animated:NO completion:nil];
[vc dismissViewControllerAnimated:NO completion:nil];

}
-(void)playerWillShowFullScreen:(id)sender{
NSLog(@"播放视频了");
app.isFull=YES;
}

//通知写在这里是因为网页加载完成但是没有播放视频,也会调用playerWillExitFullscreen方法

[[NSNotificationCenter defaultCenter] removeObserver:self name:UIWindowDidBecomeHiddenNotification object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self name:UIWindowDidBecomeVisibleNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playerWillExitFullscreen:) name:UIWindowDidBecomeHiddenNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(playerWillShowFullScreen:) name:UIWindowDidBecomeVisibleNotification object:nil];

}

上一篇 下一篇

猜你喜欢

热点阅读