29 lines
535 B
Objective-C
Executable File
29 lines
535 B
Objective-C
Executable File
//
|
|
// WindSplashAdAdapter.h
|
|
// WindSDK
|
|
//
|
|
// Created by happyelements on 2018/8/1.
|
|
// Copyright © 2018 Codi. All rights reserved.
|
|
//
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class WADStrategy;
|
|
@protocol WindAdAdapter;
|
|
|
|
@protocol WindSplashAdAdapter<WindAdAdapter>
|
|
|
|
-(void)loadAdAndShow:(WADStrategy *)strategy
|
|
logoView:(UIView *)bottomView
|
|
options:(NSDictionary *)options;
|
|
|
|
-(void)show:(WADStrategy *)strategy
|
|
window:(UIWindow *)window
|
|
bottomView:(UIView *)bottomView
|
|
options:(NSDictionary *)options;
|
|
|
|
|
|
|
|
@end
|