Files
yuyin_ios/SweetParty/主类/音悦新增/K歌厅/YYKTVCenterView.h

33 lines
1.1 KiB
C
Raw Permalink Normal View History

2025-08-08 11:05:33 +08:00
//
// YYKTVCenterView.h
// SweetParty
//
// Created by bj_szd on 2024/1/5.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface YYKTVCenterView : UIView
@property (weak, nonatomic) IBOutlet UIButton *diangeBtn;
@property (weak, nonatomic) IBOutlet UIView *timeBgView;
@property (weak, nonatomic) IBOutlet UILabel *timeLab;
@property (weak, nonatomic) IBOutlet UIImageView *singAvatarImgV;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *singAvatarCenterCon;
@property (weak, nonatomic) IBOutlet UIImageView *zhizuoAvatarImgV;
@property (weak, nonatomic) IBOutlet UIImageView *zhizuoBorderImgV;
@property (weak, nonatomic) IBOutlet UILabel *singCharmLab;
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *qipaiPriceViewTopCon;
@property (weak, nonatomic) IBOutlet UILabel *qipaiPriceLab;
@property (weak, nonatomic) IBOutlet UIButton *chujiaBtn;
@property (weak, nonatomic) IBOutlet UIButton *hostChujiaBtn;
@property (weak, nonatomic) IBOutlet UIButton *hostEndBtn;
- (void)onUpdateUIWith:(NSDictionary *)dataDict isHost:(BOOL)isHost;
@end
NS_ASSUME_NONNULL_END