FullscreenStateController.h
1 //
2 // FullscreenStateController.h
3 // OoyalaSkinSDK
4 //
5 // Copyright © 2018 ooyala. All rights reserved.
6 //
7 
8 #import <Foundation/Foundation.h>
9 
10 @class UIView;
11 @class UIViewController;
12 
13 
14 @interface FullscreenStateController : NSObject
15 
16 - (nonnull instancetype)initWithParentView:(nonnull UIView *)parentView
17  containerView:(nonnull UIView *)containerView
18  videoView:(nonnull UIView *)videoView
19  andFullscreenViewController:(nonnull UIViewController *)fullscreenViewController;
20 
21 - (void)setFullscreen:(BOOL)fullscreen
22 withOrientaionChanges:(BOOL)isOrientaionChanges
23  completion:(nullable void (^)())completion;
24 - (void)viewWillTransition:(BOOL)isAutoFullscreenWithRotatedEnabled;
25 
26 @end
Definition: FullscreenStateController.h:14