19 lines
634 B
Objective-C
19 lines
634 B
Objective-C
#import <Appodeal/Appodeal.h>
|
|
|
|
@interface AppodealUnityBannerView : NSObject
|
|
|
|
+ (instancetype)sharedInstance;
|
|
UIViewController* RootViewControllerUnityBannerView(void);
|
|
- (id)init;
|
|
- (void)setSharedBannerFrame:(CGFloat)XAxis YAxis:(CGFloat)YAxis;
|
|
- (void)hideBannerView;
|
|
- (void)showBannerView:(UIViewController*)rootViewController XAxis:(CGFloat)XAxis YAxis:(CGFloat)YAxis placement:(NSString*)placement;
|
|
- (void)reinitAppodealBannerView;
|
|
- (void)setTabletBanner: (BOOL) value;
|
|
|
|
@property(nonatomic, strong) APDBannerView *bannerView;
|
|
@property(nonatomic, assign) BOOL onScreen;
|
|
@property(nonatomic, assign) BOOL tabletBanner;
|
|
|
|
@end
|