Files
yinmeng-ios/xplan-ios/Main/Mine/View/EnterpriseRecharge/View/SubViews/XPEnterpriseRechargeFootView.h
2023-01-17 15:43:43 +08:00

25 lines
688 B
Objective-C

//
// XPEnterpriseRechargeFootView.h
// xplan-ios
//
// Created by 冯硕 on 2022/5/14.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPEnterpriseRechargeFootView;
@protocol XPEnterpriseRechargeFootViewDelegate <NSObject>
///点击了充值按钮
- (void)xPEnterpriseRechargeFootView:(XPEnterpriseRechargeFootView *)view didClickRecharge:(UIButton *)sender;
///点击了充值协议
- (void)xPEnterpriseRechargeFootView:(XPEnterpriseRechargeFootView *)view didClickRechargeProtocol:(UILabel *)label;
@end
@interface XPEnterpriseRechargeFootView : UIView
///代理
@property (nonatomic,weak) id<XPEnterpriseRechargeFootViewDelegate> delegate;
@end
NS_ASSUME_NONNULL_END