Files
peko-ios/YuMi/Modules/YMNewHome/View/PIHoemCategoryCollectionView.h

26 lines
509 B
C
Raw Normal View History

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>
-(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