CNLiveSubSegmentController.h 675 Bytes
//
//  CNLiveSubSegmentController.h
//  CNLiveVideoClassifyKit
//
//  Created by CNLive on 2021/8/30.
//

#import "CNCategoryBaseViewController.h"
@class CNCategoryGetChannelModel;

NS_ASSUME_NONNULL_BEGIN

@interface CNLiveSubSegmentController : CNCategoryBaseViewController<JXCategoryListContentViewDelegate>

@property (nonatomic, assign) BOOL                      isBlack;

-(instancetype)initWithModel:(CNCategoryGetChannelModel *)model;
@property (nonatomic, copy) void (^scrollViewDidScrollBlock)(BOOL isUp);

// 一级频道显示隐藏时二级频道右侧的搜索按钮变宽变窄控制
- (void)layoutRightSubViewWithShow:(BOOL)show;

@end

NS_ASSUME_NONNULL_END