//
|
// WeiKouAdView.h
|
// advertisement
|
//
|
// Created by weikou on 16/4/20.
|
// Copyright © 2016年 yuxingmin.com. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
#import "adModel.h"
|
#import "WeiKouNetWorkRequest.h"
|
|
typedef void(^viewBlock) (NSString *text);
|
|
@interface MyUIScrollView : UIScrollView
|
@end
|
@interface WeiKouAdView : UIView
|
{
|
viewBlock ablock;
|
NSTimer *_timer;
|
NSInteger index;
|
NSInteger switchtime;
|
UIImageView *imageView;
|
UIButton *closeButton;
|
}
|
|
//@property(nonatomic,strong) UIViewController *controller;
|
@property(nonatomic,strong) UIView *superView;
|
@property(nonatomic) adModel *model;
|
@property(nonatomic,strong) NSMutableArray *dataArray;
|
@property(nonatomic,strong) NSMutableArray *imageArray;
|
|
-(void)setSuperView:(UIView *)superView;
|
|
-(id)initWithFrame:(CGRect)frame withBlock:(viewBlock)block;
|
@end
|