22 lines
443 B
Objective-C
22 lines
443 B
Objective-C
//
|
|
// PIHoemCategoryTitleView.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/9/1.
|
|
//
|
|
|
|
#import <JXCategoryView/JXCategoryView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
typedef void(^ScrolledHandle)(NSInteger type);
|
|
|
|
@interface PIHoemCategoryTitleView : JXCategoryTitleView
|
|
@property(nonatomic,assign) NSInteger index;
|
|
@property(nonatomic,copy) ScrolledHandle scrolledHandle;
|
|
@property(nonatomic,strong) NSMutableArray *titleList;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|