KWMAdHeader.h 454 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9
//
//  KWMAdHeader.h
//  iCemarose
//
//  Created by HouWeiBin on 2017/7/10.
//  Copyright © 2017年 kollway. All rights reserved.
//

#import "KWMBaseModel.h"
houweibin committed
10 11 12 13 14 15 16 17
#import "KWMAdvertisement.h"


@protocol KWMAdDelegate <NSObject>

- (void)kwm_gotoWebView:(NSString *)url;

@end
houweibin committed
18

u  
lee committed
19
@interface KWMAdHeader : UIView
houweibin committed
20 21 22 23

+ (NSString *)kwmTag;


houweibin committed
24 25 26 27
@property (nonatomic) NSArray<KWMAdvertisement *> *adArray;

@property(nonatomic,weak) id<KWMAdDelegate> delegate;

houweibin committed
28
@end