1234567891011121314151617181920 |
- //
- // ASCategaryListCell.h
- // Asteria
- //
- // Created by iOS on 2023/6/6.
- //
- #import <UIKit/UIKit.h>
- #import "ASHomeCategoryModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ASCategaryListCell : UITableViewCell
- @property (nonatomic, strong) NSArray <ASHomeCategoryModel *>*arr;
- @property (nonatomic, copy) void(^selectCategory)(ASHomeCategoryModel *model,NSIndexPath *index);
- @end
- NS_ASSUME_NONNULL_END
|