40 lines
1.3 KiB
Objective-C
Executable File
40 lines
1.3 KiB
Objective-C
Executable File
//
|
|
// YYJYApplyUpView.h
|
|
// YaYin
|
|
//
|
|
// Created by bj_szd on 2023/4/26.
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "RCMicRoomViewModel.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface YYJYApplyUpView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
|
@property (weak, nonatomic) IBOutlet UIView *whiteView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *vipLab;
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *vipCollectionView;
|
|
@property (weak, nonatomic) IBOutlet UILabel *waitLab;
|
|
@property (weak, nonatomic) IBOutlet UICollectionView *waitCollectionView;
|
|
@property (weak, nonatomic) IBOutlet UIButton *clearBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *refuseBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *agreeBtn;
|
|
@property (weak, nonatomic) IBOutlet NSLayoutConstraint *agreeBtnRightCon;
|
|
@property (weak, nonatomic) IBOutlet UIButton *applyBtn;
|
|
@property (weak, nonatomic) IBOutlet UIButton *sendBtn;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *giftImgV;
|
|
@property (weak, nonatomic) IBOutlet UILabel *giftNameLab;
|
|
|
|
@property (nonatomic, copy) void(^onClickUserBlock)(NSString *uid);
|
|
|
|
@property (nonatomic, strong) RCMicRoomViewModel *viewModel;
|
|
|
|
- (void)onReceiveSocketWith:(NSDictionary *)dict;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|