27 lines
563 B
Objective-C
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
|