1234567891011121314151617181920212223 |
- //
- // AdPopView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/5/31.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AdPopModel.h"
- typedef void(^ClickBlock)(AdPopModel *model);
- typedef void(^CloseBlock)(void);
- @interface AdPopView : UIView
- - (instancetype)initWithFrame:(CGRect)frame adModel:(AdPopModel *)model;
- @property (nonatomic, copy) ClickBlock clickBlock;
- @property (nonatomic, copy) CloseBlock closeBlock;
- @end
|