CNWitnessSearchDetailController.h 754 Bytes
//
//  CNWitnessSearchDetailController.h
//  CNLiveVideoClassifyKit
//
//  Created by CNLive on 2022/6/16.
//

typedef NS_ENUM(NSUInteger , CNWitnessSearchDetailType) {
    CNWitnessSearchDetailTypeVideo = 0,   //视频页
    CNWitnessSearchDetailTypePerson = 1,  //用户页
};

#import <CNLiveBusinessBaseModule/CNLiveBusinessBaseModule.h>

NS_ASSUME_NONNULL_BEGIN

@interface CNWitnessSearchDetailController : CNCommonViewController<JXCategoryListContentViewDelegate>
@property (nonatomic, strong)NSString *searchStr;
@property (nonatomic, copy)void (^panGestureBlock)(UIPanGestureRecognizer *gestureRecognizer);
/// 初始化
/// @param type 页面类型
- (instancetype)initWithPageType:(CNWitnessSearchDetailType)type;
@end

NS_ASSUME_NONNULL_END