2024-02-22 15:58:48 +08:00
|
|
|
//
|
|
|
|
// PIHoemCategoryCollectionView.h
|
|
|
|
// YuMi
|
|
|
|
//
|
|
|
|
// Created by duoban on 2024/2/21.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
|
|
|
@protocol PIHoemCategoryCollectionViewDelegate <NSObject>
|
|
|
|
|
2024-02-26 17:18:21 +08:00
|
|
|
-(void)pi_didSelectItemAtIndex:(NSInteger)index;
|
2024-02-22 15:58:48 +08:00
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
@interface PIHoemCategoryCollectionView : UIView
|
|
|
|
@property(nonatomic,strong) NSMutableArray *titleList;
|
|
|
|
@property(nonatomic,assign) NSInteger index;
|
|
|
|
@property(nonatomic,weak) id<PIHoemCategoryCollectionViewDelegate>delegate;
|
|
|
|
@end
|
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|