口袋优选

KBMineAdView.h 460B

123456789101112131415161718192021
  1. //
  2. // KBMineAdView.h
  3. // YouHuiProject
  4. //
  5. // Created by 小花 on 2018/6/6.
  6. // Copyright © 2018年 kuxuan. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AdPopModel.h"
  10. typedef void (^TapAdBlock)(AdPopModel *model);
  11. typedef void (^CloseBlock)(void);
  12. @interface KBMineAdView : UIView
  13. @property (nonatomic, strong) AdPopModel *model;
  14. @property (nonatomic, copy) TapAdBlock tapAdBlock;
  15. @property (nonatomic, copy) CloseBlock closeBlock;
  16. @end