酷店

KDPLiveRightHeaderView.h 527B

12345678910111213141516171819202122232425262728
  1. //
  2. // KDPLiveRightHeaderView.h
  3. // KuDianProject
  4. //
  5. // Created by admin on 2019/7/9.
  6. // Copyright © 2019 KDP. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef void(^headerClickBlock)(NSInteger index);
  11. @interface KDPLiveRightHeaderView : UIView
  12. @property (nonatomic, copy) headerClickBlock clickBlock;
  13. - (void)reloadHeaderData:(NSDictionary *)dict;
  14. @property (nonatomic, assign) NSInteger selectIndex;
  15. @property (nonatomic, assign) BOOL hiddenGoodTipView;
  16. @end
  17. NS_ASSUME_NONNULL_END