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