25 lines
688 B
Objective-C
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
|