29 lines
497 B
Objective-C
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
|