| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // BogoRechargeScrollView.h
- // BuguLive
- //
- // Created by 宋晨光 on 2021/4/8.
- // Copyright © 2021 xfg. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "AccountRechargeModel.h"
- @class BogoRechargeScrollView;
- @protocol BogoRechargeDelegate <NSObject>
- - (void)alipay:(NSString *)payinfo;
- - (void)getProductInfowithprotectId:(NSString *)proId;
- -(void)checkProid:(NSString *)pro_id;
- - (void)rechargeScrollView:(BogoRechargeScrollView *)rechargeScrollView didClickCloseBtn:(UIButton *)sender;
- @end
- NS_ASSUME_NONNULL_BEGIN
- @interface BogoRechargeScrollView : UIScrollView
- @property(nonatomic, strong) AccountRechargeModel *model;
- @property(nonatomic, strong) id<BogoRechargeDelegate> reDelegate;
- //@property(nonatomic, strong) NSString *diamondStr;
- @property(nonatomic, assign) BOOL isRecharge;
- - (void)updateDiamonds:(NSInteger)diamonds;
- @end
- NS_ASSUME_NONNULL_END
|