ASHomeBannerCell.h 387 B

123456789101112131415161718192021
  1. //
  2. // ASHomeBannerCell.h
  3. // Asteria
  4. //
  5. // Created by iOS on 2023/6/5.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #import "ASJumpModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface ASHomeBannerCell : UITableViewCell
  11. @property (nonatomic, copy) void(^selectCallBack)(NSInteger index, NSString *title, NSString *typeId,id model);
  12. - (void)showData:(NSArray <ASJumpModel*>*)arr;
  13. @end
  14. NS_ASSUME_NONNULL_END