ZCOpenShopFootView.h 773 Bytes
Newer Older
zhukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
//
//  ZCOpenShopFootView.h
//  UniversalApp
//
//  Created by 凯朱 on 2019/5/31.
//  Copyright © 2019 徐阳. All rights reserved.
//

#import <UIKit/UIKit.h>
/**
 ZCOpenShopFootView
 */
@protocol ZCOpenShopFootViewDelegate <NSObject>

/**
 选择支付方式回调

 @param payType 1-微信 2-支付宝
 */
-(void)zcOpenShopFootViewSelectPayTypeAction:(NSInteger)payType;

/**
 支付回调
 */
-(void)zcOpenShopFootViewPayAction;
@end


NS_ASSUME_NONNULL_BEGIN

@interface ZCOpenShopFootView : UIView
@property (weak, nonatomic) IBOutlet UIButton *wechatBtn;
@property (weak, nonatomic) IBOutlet UIButton *alPayBtn;
@property (weak, nonatomic) IBOutlet UIButton *payBtn;
@property(nonatomic, weak) id<ZCOpenShopFootViewDelegate> delegate;
@end

NS_ASSUME_NONNULL_END