22 lines
490 B
Objective-C
22 lines
490 B
Objective-C
//
|
|
// XPRoomTarrowBannerView.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/9/13.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "PIBaseAnimationViewModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface XPRoomTarrowBannerView : UIView
|
|
///礼物信息
|
|
@property (nonatomic,strong) PIBaseAnimationViewModel *giftInfo;
|
|
@property(nonatomic,strong) PIBaseAnimationViewModel *giftH5Info;
|
|
|
|
@property(nonatomic,assign) BOOL isBig;
|
|
-(instancetype)initWithFrame:(CGRect)frame isH5:(BOOL)isH5;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|