-
Notifications
You must be signed in to change notification settings - Fork 9
/
iAdPlugin.h
34 lines (26 loc) · 840 Bytes
/
iAdPlugin.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
// iAdPlugin.h
// TestAdPlugins
//
// Created by Xie Liming on 14-11-12.
//
//
#import "GenericAdPlugin.h"
@interface iAdPlugin : GenericAdPlugin
- (void)pluginInitialize;
- (void) parseOptions:(NSDictionary *)options;
- (NSString*) __getProductShortName;
- (NSString*) __getTestBannerId;
- (NSString*) __getTestInterstitialId;
- (UIView*) __createAdView:(NSString*)adId;
- (int) __getAdViewWidth:(UIView*)view;
- (int) __getAdViewHeight:(UIView*)view;
- (void) __loadAdView:(UIView*)view;
- (void) __pauseAdView:(UIView*)view;
- (void) __resumeAdView:(UIView*)view;
- (void) __destroyAdView:(UIView*)view;
- (NSObject*) __createInterstitial:(NSString*)adId;
- (void) __loadInterstitial:(NSObject*)interstitial;
- (void) __showInterstitial:(NSObject*)interstitial;
- (void) __destroyInterstitial:(NSObject*)interstitial;
@end