ASCategaryListCell.h 404 B

1234567891011121314151617181920
  1. //
  2. // ASCategaryListCell.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/6.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASHomeCategoryModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASCategaryListCell : UITableViewCell
  11. @property (nonatomic, strong) NSArray <ASHomeCategoryModel *>*arr;
  12. @property (nonatomic, copy) void(^selectCategory)(ASHomeCategoryModel *model,NSIndexPath *index);
  13. @end
  14. NS_ASSUME_NONNULL_END