33 lines
1.1 KiB
Objective-C
Executable File
33 lines
1.1 KiB
Objective-C
Executable File
//
|
|
// 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
|