Files
2025-08-08 11:05:33 +08:00

41 lines
1.3 KiB
Objective-C
Executable File

//
// YYJYSimiRoomView.h
// YaYin
//
// Created by bj_szd on 2023/7/14.
// Copyright © 2023 YaYin. All rights reserved.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface YYJYSimiRoomView : UIView
@property (weak, nonatomic) IBOutlet UIImageView *bgImgV;
@property (weak, nonatomic) IBOutlet UIView *bgView;
@property (weak, nonatomic) IBOutlet UIButton *zhenxinBtn;
@property (weak, nonatomic) IBOutlet UIButton *huatiBtn;
@property (weak, nonatomic) IBOutlet UILabel *zhenxinContentLab;
@property (weak, nonatomic) IBOutlet UILabel *surplusTimeLab;
@property (weak, nonatomic) IBOutlet UIButton *rollBtn;
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV_1;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab_1;
@property (weak, nonatomic) IBOutlet UIImageView *avatarImgV_2;
@property (weak, nonatomic) IBOutlet UILabel *nicknameLab_2;
@property (weak, nonatomic) IBOutlet UICollectionView *collectionView;
@property (weak, nonatomic) IBOutlet UIButton *simiBtn;
@property (nonatomic, copy) void(^onRollTouziBlock)(void);
@property (nonatomic, copy) void(^onChangeSimiBlock)(BOOL close);
@property (nonatomic, copy) NSString *prid;
- (void)onUpdateSurplusTime:(NSInteger)second;
- (void)onUpdateZhenxinContent:(NSString *)content;
- (void)onUpdateGuangquanWith:(NSString *)uid;
@end
NS_ASSUME_NONNULL_END