ASCheckoutBottomView.h 411 B

123456789101112131415161718192021222324
  1. //
  2. // ASCheckoutBottomView.h
  3. // Asteria
  4. //
  5. // Created by xingyu on 2024/5/10.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. typedef void(^ASCheckoutBottomBlock)(void);
  10. @interface ASCheckoutBottomView : UIView
  11. @property (nonatomic, strong) UIView *backView;
  12. @property (nonatomic, copy) ASCheckoutBottomBlock bottomBlock;
  13. - (void)setBottomPayStyle:(NSString *)payCode;
  14. @end
  15. NS_ASSUME_NONNULL_END