28 lines
623 B
Objective-C
28 lines
623 B
Objective-C
//
|
|
// XPGiftTwelveStarBroadcastView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2022/12/7.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class GiftTwelveStarFirstModel, XPGiftTwelveStarBroadcastView;
|
|
|
|
@protocol XPGiftTwelveStarBroadcastViewDelegate <NSObject>
|
|
|
|
- (void)xPGiftTwelveStarBroadcastView:(XPGiftTwelveStarBroadcastView *)view didClickDetail:(UIButton *)sender;
|
|
@end
|
|
|
|
@interface XPGiftTwelveStarBroadcastView : UIView
|
|
|
|
@property (nonatomic, strong) GiftTwelveStarFirstModel *giftInfo;
|
|
|
|
///代理
|
|
@property (nonatomic,weak) id<XPGiftTwelveStarBroadcastViewDelegate> delegate;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|