123456789101112131415161718192021222324252627282930313233343536 |
- //
- // KBCategorySelectView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/10/9.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KBBaseViewController.h"
- #import "KBCategoryChannelModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @protocol CategoryPopViewDelegate <NSObject>
- - (void)CategoryPopViewDidSelectedIndex:(NSInteger)index;
- @end
- @interface KBCategorySelectView : UIView
- - (instancetype)initWithmodels:(NSArray *)models delegate:(id<CategoryPopViewDelegate>)delegate selectedIndex:(NSInteger)index superVc:(KBBaseViewController *)superVc;
- - (void)showInView:(UIView *)view belowSubView:(UIView *)subView;
- @property (nonatomic, weak) id<CategoryPopViewDelegate> delegate;
- @end
- #pragma mark ------------
- @interface CategoryPopTypeCell : UICollectionViewCell
- @property (nonatomic, strong) UILabel *label;
- @property (nonatomic, strong) KBCategoryChannelModel *model;
- @end
- NS_ASSUME_NONNULL_END
|