123456789101112131415161718192021222324 |
- //
- // ASCheckoutBottomView.h
- // Asteria
- //
- // Created by xingyu on 2024/5/10.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void(^ASCheckoutBottomBlock)(void);
- @interface ASCheckoutBottomView : UIView
- @property (nonatomic, strong) UIView *backView;
- @property (nonatomic, copy) ASCheckoutBottomBlock bottomBlock;
- - (void)setBottomPayStyle:(NSString *)payCode;
- @end
- NS_ASSUME_NONNULL_END
|