// // QXRoomAuctionResultView.h // QXLive // // Created by 启星 on 2025/6/30. // #import #import "QXTimer.h" #import "QXRoomModel.h" NS_ASSUME_NONNULL_BEGIN @interface QXRoomAuctionResultView : UIView @property (nonatomic,strong)QXRoomAuctionUser *user; @property (nonatomic,strong)QXRoomAuctionUser *getUser; -(instancetype)initWithStyle:(BOOL)isSuccess isRealLove:(BOOL)isRealLove; -(void)showInView:(UIView *)view; -(void)hide; -(void)setResultWithUser:(QXRoomAuctionUser*)user getUser:(QXRoomAuctionUser *)getUser; @end @interface QXRoomAuctionFailView : UIView @property (nonatomic,strong)UIImageView *bgImageView; @property (nonatomic,strong)UILabel *titleLabel; @property (nonatomic,strong)UILabel *messageLabel; @property (nonatomic,strong)UIButton *closeBtn; @property (nonatomic,strong)QXTimer *timer; @property (nonatomic,copy)void(^closeActionBlock)(void); -(void)startTimer; @end @interface QXRoomAuctionSuccessView : UIView -(instancetype)initWithIsRealLove:(BOOL)isRealLove; @property (nonatomic,strong)UIImageView *bgImageView; @property (nonatomic,strong)UIImageView *leftHeaderView; @property (nonatomic,strong)UILabel *leftNameLabel; @property (nonatomic,strong)UIImageView *rightHeaderView; @property (nonatomic,strong)UILabel *rightNameLabel; @property (nonatomic,strong)UILabel *resultLabel; @property (nonatomic,assign)BOOL isRealLove; @property (nonatomic,strong)QXTimer *timer; @property (nonatomic,copy)void(^closeActionBlock)(void); -(void)startTimer; @end NS_ASSUME_NONNULL_END