12345678910111213141516171819202122232425262728 |
- //
- // KDPLiveRightHeaderView.h
- // KuDianProject
- //
- // Created by admin on 2019/7/9.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^headerClickBlock)(NSInteger index);
- @interface KDPLiveRightHeaderView : UIView
- @property (nonatomic, copy) headerClickBlock clickBlock;
- - (void)reloadHeaderData:(NSDictionary *)dict;
- @property (nonatomic, assign) NSInteger selectIndex;
- @property (nonatomic, assign) BOOL hiddenGoodTipView;
- @end
- NS_ASSUME_NONNULL_END
|