//
|
// SearchTitleView.h
|
// BuWanVideo2.0
|
//
|
// Created by Aeline on 2020/9/19.
|
// Copyright © 2020 com.yeshi.buwansheque.ios. All rights reserved.
|
//
|
|
#import <UIKit/UIKit.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@protocol SearchTitleViewDelegate <NSObject>
|
|
- (void)selectType:(NSInteger)type;
|
|
@end
|
|
@interface SearchTitleView : UIView
|
|
- (void)setTitleData:(NSArray *)typeList :(BOOL)isSearch;
|
|
@property (nonatomic, nullable, strong) NSArray *typeList;
|
|
@property (nonatomic, weak) id<SearchTitleViewDelegate>delegate;
|
|
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|