XYWishCenterTableViewCell.h 467 B

123456789101112131415161718192021222324
  1. //
  2. // XYWishCenterTableViewCell.h
  3. // Timi
  4. //
  5. // Created by 翟玉磊 on 2021/10/19.
  6. //
  7. #import "BaseTableViewCell.h"
  8. NS_ASSUME_NONNULL_BEGIN
  9. @protocol XYWishCenterTableViewCellDelegate <NSObject>
  10. - (void)wishCenterGiftSwitchValueChangeAtIndexPath:(NSIndexPath *)indexPath;
  11. @end
  12. @interface XYWishCenterTableViewCell : BaseTableViewCell<YLConfigureCell>
  13. @property (nonatomic, weak) id<XYWishCenterTableViewCellDelegate> delegate;
  14. @end
  15. NS_ASSUME_NONNULL_END