送礼物的公屏的显示

This commit is contained in:
fengshuo
2021-11-17 19:29:14 +08:00
parent 1a4b6b537a
commit 1247fa92c5
49 changed files with 555 additions and 143 deletions

View File

@@ -0,0 +1,31 @@
//
// XPGiftBottomView.h
// xplan-ios
//
// Created by 冯硕 on 2021/11/9.
//
#import <UIKit/UIKit.h>
#import "XPGiftInfoView.h"
NS_ASSUME_NONNULL_BEGIN
@class XPGiftBarView, XPGiftCountModel, WalletInfoModel;
@protocol XPGiftBarViewDelegate <NSObject>
///点击了充值的
- (void)xPGiftBarViewDidClickRecharge:(XPGiftBarView *)view;;
///点击了送礼物的的
- (void)xPGiftBarView:(XPGiftBarView *)view didClickSendGift:(XPGiftCountModel *)giftCount;
@end
@interface XPGiftBarView : UIView
///代理
@property (nonatomic,weak) id<XPGiftBarViewDelegate> delegate;
///不同的tabbar
@property (nonatomic,assign) GiftSegmentType type;
///更新礼物个数
@property (nonatomic,strong) XPGiftCountModel *giftCountModel;
///钱包信息
@property (nonatomic,strong) WalletInfoModel *walletInfoModel;
@end
NS_ASSUME_NONNULL_END