SmartclipSDKiOS 3.0.0
Smartclip Advertisement Framework for iOS
Loading...
Searching...
No Matches
SCElementSize.h
1//
2// SCElementSize.h
3// SmartclipSDKiOS
4//
5// Copyright © 2020 smartclip. All rights reserved.
6//
7
8#import <Foundation/Foundation.h>
9#import <UIKit/UIKit.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
14@interface SCElementSize : NSObject
16typedef enum ViewMode {
17 ViewModeNormal,
18 ViewModeFullscreen
19} ViewMode;
20
22- (instancetype)initWithViewMode:(ViewMode)viewMode boundingRect:(CGRect)boundingRect;
23@end
24
25NS_ASSUME_NONNULL_END
Class that describes the size of the video player and its view mode.
Definition: SCElementSize.h:15
ViewMode
View Mode (self explanatory)
Definition: SCElementSize.h:16