Files
yinmeng-ios/xplan-ios/Main/ModuleKit/SendGiftView/View/XPGiftLuckyGiftBroadcastView.h
2022-10-17 19:51:34 +08:00

29 lines
497 B
Objective-C

//
// XPGiftLuckyGiftBoradCastView.h
// xplan-ios
//
// Created by GreenLand on 2022/10/8.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol XPGiftLuckyGiftBroadcastViewDelegate <NSObject>
///点击了玩法说明
- (void)xPGiftLuckyGiftBroadcastViewPlayDescClick;
@end
@interface XPGiftLuckyGiftBroadcastView : UIView
@property (nonatomic, weak) id<XPGiftLuckyGiftBroadcastViewDelegate> delegate;
@property (nonatomic,strong) NSArray *records;
@end
NS_ASSUME_NONNULL_END