XYSkillOrderListTableViewCell.h 666 B

123456789101112131415161718192021222324252627
  1. //
  2. // XYSkillOrderListTableViewCell.h
  3. // Starbuds
  4. //
  5. // Created by 翟玉磊 on 2020/11/4.
  6. // Copyright © 2020 翟玉磊. All rights reserved.
  7. //
  8. #import "BaseTableViewCell.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol XYSkillOrderListTableViewCellDelegate <NSObject>
  11. - (void)cellRightButtonClickAtIndexPath:(NSIndexPath *)indexPath;
  12. - (void)cellLeftButtonClickAtIndexPath:(NSIndexPath *)indexPath;
  13. - (void)cellRefreshOrderStatusClickAtIndexPath:(NSIndexPath *)indexPath;
  14. @end
  15. @interface XYSkillOrderListTableViewCell : BaseTableViewCell<YLConfigureCell>
  16. @property (nonatomic, weak) id<XYSkillOrderListTableViewCellDelegate>delegate;
  17. @end
  18. NS_ASSUME_NONNULL_END