Files
yinmeng-ios/xplan-ios/Base/UI/SendGiftView/View/XPGiftCountView.h
2021-11-19 14:13:08 +08:00

27 lines
563 B
Objective-C

//
// XPGiftCountView.h
// xplan-ios
//
// Created by 冯硕 on 2021/11/11.
//
#import <UIKit/UIKit.h>
#import "XPGiftInfoView.h"
NS_ASSUME_NONNULL_BEGIN
@class XPGiftCountView,XPGiftCountModel;
@protocol XPGiftCountViewDelegate <NSObject>
///点击了多个个
- (void)xPGiftCountView:(XPGiftCountView *)view didClickItem:(XPGiftCountModel *)model;
@end
@interface XPGiftCountView : UIView
///代理
@property (nonatomic,weak) id<XPGiftCountViewDelegate> delegate;
///
@property (nonatomic,assign) GiftSegmentType segmentType;
@end
NS_ASSUME_NONNULL_END