iOS UIWebView 全屏播放視頻, 需橫屏,單app不支援橫屏, 解決辦法

來源:互聯網
上載者:User

iOS UIWebView 全屏播放視頻, 需橫屏,單app不支援橫屏, 解決辦法

參考blog:

UIWebView中視頻播放螢幕自動旋轉,app不支援旋轉但是某一個頁面需要旋轉等

使用UIWebView播放視頻時捕捉全屏播放事件

iOS兩個強制旋轉螢幕的方法

IOS:旋轉螢幕與Transform


在使用UIWebView播放視頻的時候,想到視頻應該能夠旋轉播放。但是app本身是不支援旋轉的,所以把代碼記錄如下,引申出來的答案就是:所有的你想要進行頁面自動旋轉的頁面都是可以用這種方法。不說太多的廢話,代碼如下:

首先在appDelegate中進行代理的設定,這個方法系統在旋轉螢幕等的時候會自動調用,不用太多的擔心調用時機:

//為視頻的旋轉做準備的

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window {

if(_isFull)

returnUIInterfaceOrientationMaskAll;

returnUIInterfaceOrientationMaskPortrait;

}


上面的代碼為:設定一個app的全域變數_isFull,在需要旋轉螢幕的地方把全域變數進行改變並發送相應的通知(通知在下面),會自動調用上面的方法進行螢幕的旋轉。

.h代碼如下:

@interface AppDelegate :UIResponder

{

BOOL _isFull; // 是否全屏

}


@property (nonatomic)BOOL isFull;

上面已經將需要的變換代碼設定好了,下面要做的就是使用通知在需要旋轉螢幕的時候系統自動調用上面的代碼:

[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(videoStarted:)name:@"UIMoviePlayerControllerDidEnterFullscreenNotification"object:nil];// 播放器即將播放通知


[[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(videoFinished:)name:@"UIMoviePlayerControllerDidExitFullscreenNotification"object:nil];// 播放器即將退出通知


上面發送了兩個通知,分別為:UIMoviePlayerControllerDidEnterFullscreenNotification,UIMoviePlayerControllerWillExitFullscreenNotification,我使用的是這兩個方法,有的網上說使用UIMoviePlayerControllerDidExitFullscreenNotification這個通知,但是我使用之後發現不行,應該使用WillExit這個通知。通知之後的代碼如下:

上面的方法執行完畢之後,會系統調用一開始在appDelegate裡面寫的方法,從而通過改變isFull的參數進行螢幕支援方向的改變。

#pragma mark 調用視頻的通知方法


#pragma mark 調用視頻的通知方法

- (void)videoStarted:(NSNotification *)notification {//開始播放

AppDelegate * appDelegate = [[UIApplicationsharedApplication] delegate];

appDelegate.isFull =YES;

}



- (void)videoFinished:(NSNotification *)notification {//完成播放

AppDelegate *appDelegate = [[UIApplicationsharedApplication]delegate];

appDelegate.isFull =NO;

if ([[UIDevice currentDevice] respondsToSelector:@selector(setOrientation:)]) {

SEL selector = NSSelectorFromString(@"setOrientation:");

NSInvocation *invocation = [NSInvocationinvocationWithMethodSignature:[UIDeviceinstanceMethodSignatureForSelector:selector]];

[invocationsetSelector:selector];

[invocationsetTarget:[UIDevicecurrentDevice]];

int val =UIInterfaceOrientationPortrait;

[invocationsetArgument:&valatIndex:2];

[invocationinvoke];

}

// NSLog(@"videoFinished %@", self.view.window.rootViewController.view);

//

// NSLog(@"a == %f", self.view.window.rootViewController.view.transform.a);

// NSLog(@"b == %f", self.view.window.rootViewController.view.transform.b);

// NSLog(@"c == %f", self.view.window.rootViewController.view.transform.c);

// NSLog(@"d == %f", self.view.window.rootViewController.view.transform.d);

// if (self.view.window.rootViewController.view.transform.c == 1 || self.view.window.rootViewController.view.transform.c == -1 ) {

// CGAffineTransform transform;

// //設定旋轉度數

// // transform = CGAffineTransformRotate(self.view.window.rootViewController.view.transform, M_PI / 2);

// transform = CGAffineTransformIdentity;

// [UIView beginAnimations:@"rotate" context:nil ];

// [UIView setAnimationDuration:0.1];

// [UIView setAnimationDelegate:self];

// [self.view.window.rootViewController.view setTransform:transform];

// [UIView commitAnimations];

//

// self.view.window.rootViewController.view.frame = CGRectMake(0, 0, [UIScreen mainScreen].bounds.size.width, [UIScreen mainScreen].bounds.size.height );

// }

//

// [[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeLeft animated:NO];

}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.