-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUADSViewController.h
More file actions
23 lines (20 loc) · 1.11 KB
/
UADSViewController.h
File metadata and controls
23 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#import <UIKit/UIKit.h>
#import "UADSAVPlayer.h"
#import "UADSVideoView.h"
#import "UADSWebPlayerView.h"
#import "UADSARView.h"
#import "UADSAdUnitViewHandler.h"
@interface UADSViewController : UIViewController
@property (nonatomic, strong) NSArray<NSString *> *currentViews;
@property (nonatomic, assign) int supportedOrientations;
@property (nonatomic, assign) BOOL statusBarHidden;
@property (nonatomic, assign) BOOL autorotate;
@property (nonatomic, assign) BOOL transparent;
@property (nonatomic, assign) BOOL homeIndicatorAutoHidden;
- (instancetype)initWithViews: (NSArray *)views supportedOrientations: (NSNumber *)supportedOrientations statusBarHidden: (BOOL)statusBarHidden shouldAutorotate: (BOOL)shouldAutorotate isTransparent: (BOOL)isTransparent homeIndicatorAutoHidden: (BOOL)homeIndicatorAutoHidden;
- (void)setViews: (NSArray<NSString *> *)views;
- (void)setTransform: (float)transform;
- (void)setViewFrame: (NSString *)view x: (int)x y: (int)y width: (int)width height: (int)height;
- (BOOL) prefersHomeIndicatorAutoHidden;
- (UADSAdUnitViewHandler *)getViewHandler: (NSString *)viewName;
@end