BuyRecoderListCell.h 445 B

1234567891011121314151617181920212223242526
  1. //
  2. // BuyRecoderListCell.h
  3. // VclustersGemini
  4. //
  5. // Created by 黄盛威 on 2020/10/19.
  6. // Copyright © 2020 APPLE. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol BuyRecoderListCellDelegate <NSObject>
  11. - (void)buyRecoderListCellOrderDetailBtnClick;
  12. @end
  13. @interface BuyRecoderListCell : UITableViewCell
  14. @property (nonatomic ,weak)id <BuyRecoderListCellDelegate> delegate;
  15. @end
  16. NS_ASSUME_NONNULL_END