YMMemberPayMethodPopupView.h 652 B

12345678910111213141516171819202122232425
  1. //
  2. // YMMemberPayMethodPopupView.h
  3. // MSYOUPAI
  4. //
  5. // Created by YoMi on 2024/2/28.
  6. // Copyright © 2024 MS. All rights reserved.
  7. //
  8. #import "YMBaseView.h"
  9. #import "YMBaseTableViewCell.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. typedef void(^MemberPayMethodButtonBlock)(BOOL isConfirm, NSString *selectedPayCode);
  12. typedef void(^MemberPayMethodDismissBlock)(void);
  13. @interface YMMemberPayMethodPopupView : YMBaseView
  14. @property (nonatomic, copy) MemberPayMethodButtonBlock buttonBlock;
  15. /** 关闭回调 */
  16. @property (nonatomic, copy) MemberPayMethodDismissBlock dismissBlock;
  17. @end
  18. @interface YMMemberPayMethodCell : YMBaseTableViewCell
  19. @end
  20. NS_ASSUME_NONNULL_END