iOS 全局禁止橫屏,但UIWebView 全屏播放視頻,橫屏,解決辦法git
UIWebview在播放網頁視頻的時候咱們須要進行是否全屏狀態的監聽。github
通常的需求是在播放視頻時候須要橫屏,退出全屏的時候不能橫屏,可是UIWebview沒有給出響應的方法,編程
本問題解決的Demo工程https://github.com/darren90/iOS_Demo/tree/master/02-UIWebviewapp
這個比較容易個人思路是
在APPDelegate.h文件中增長屬性:是否支持橫屏ide
/*** 是否容許橫屏的標記 */ @property (nonatomic,assign)BOOL allowRotation;
在APPDelegate.m文件中增長方法,控制所有不支持橫屏atom
-(NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window { if (self.allowRotation) { return UIInterfaceOrientationMaskAll; } return UIInterfaceOrientationMaskPortrait; }
這樣在其餘界面想要橫屏的時候,咱們只要控制allowRotation這個屬性就能夠控制其餘界面進行橫屏了。code
//需在上面#import "AppDelegate.h" AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate]; appDelegate.allowRotation = YES; //不讓橫屏的時候 appDelegate.allowRotation = NO;便可
網上有人給出兩種方法:視頻
第一:可是iOS8下失效,沒有用
[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(videoStarted:)name:@"UIMoviePlayerControllerDidEnterFullscreenNotification"object:nil];//server
第二:經過js,可是沒有找到詳細的,可解決的方案。blog
因此也就是沒有找到成熟的方案,因此就本身分析了。
方法總會有的,咱們要向監聽UIWebView視頻播放時候是否全屏,也就是咱們要能拿到播放視頻的view或者是viewcontroller,可是因爲UIWebView沒有比較直觀的方法,因此只能從其餘地方下手了
經過Reveal咱們能夠查看到view的一些層級關係,能夠看出彈出播放的是AVPlayerView,在UIWindow上,
好了,問題到這已經很明晰了,咱們要麼能拿到AVPlayerView,要呢拿到UIWindow才能控制播放界面,分析後發現AVPlayerView很差拿,可是UIWindow及很easy了。
因此這裏可使用UIWindow的通知,就能夠解決
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(begainFullScreen) name:UIWindowDidBecomeVisibleNotification object:nil];//進入全屏 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(endFullScreen) name:UIWindowDidBecomeHiddenNotification object:nil];//退出全屏
在退出全屏時,增長邏輯讓其強制編程豎屏,這樣當全屏播放的時候,點擊down("完成")時,就會自動變成豎屏了。
// 進入全屏 -(void)begainFullScreen { AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate]; appDelegate.allowRotation = YES; } // 退出全屏 -(void)endFullScreen { AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate]; appDelegate.allowRotation = NO; //強制歸正: if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) { SEL selector = NSSelectorFromString(@"setOrientation:"); NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:[UIDevice instanceMethodSignatureForSelector:selector]]; [invocation setSelector:selector]; [invocation setTarget:[UIDevice currentDevice]]; int val =UIInterfaceOrientationPortrait; [invocation setArgument:&val atIndex:2]; [invocation invoke]; } }
實例Demo工程https://github.com/darren90/iOS_Demo/tree/master/02-UIWebview
歡迎您的訪問...
微博:@IT_攻城師
github:@Darren90
做者:http://www.cnblogs.com/fengtengfei/
本文版權歸本人和博客園全部,歡迎轉載,但未經做者贊成必須保留此段聲明,且在文章頁面明顯位置給出原文鏈接。