ASCategaryListCell.h 380 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 "ASJumpModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASCategaryListCell : UITableViewCell
  11. @property (nonatomic, strong) NSArray <ASJumpModel *>*arr;
  12. @property (nonatomic, copy) void(^selectCategory)(ASJumpModel *model,NSIndexPath *index);
  13. @end
  14. NS_ASSUME_NONNULL_END