21 lines
437 B
Objective-C
21 lines
437 B
Objective-C
//
|
|
// XPRoomGiftBannerView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/11/18.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
@class GiftReceiveInfoModel, XPGiftBannerUserInfoModel;
|
|
@interface XPRoomGiftBannerView : UIView
|
|
///配上飘屏的数据
|
|
- (void)configGiftBanner:(GiftReceiveInfoModel *)receiveInfo users:(NSArray<XPGiftBannerUserInfoModel *> *)users;
|
|
///重置数据
|
|
- (void)resetData;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|