12345678910111213141516171819 |
- //
- // LDTodayAdView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/9/6.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AdPopModel.h"
- typedef void (^TapAdBlock)(void);
- typedef void (^CloseBlock)(void);
- @interface LDTodayAdView : UIView
- @property (nonatomic, copy) TapAdBlock tapAdBlock;
- @property (nonatomic, strong) AdPopModel *model;
- @end
|