32 lines
834 B
C
32 lines
834 B
C
|
|
//
|
||
|
|
// YYJYRelationView.h
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/7/12.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "RCMicRoomViewModel.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface YYJYRelationView : UIView
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *touchImgV;
|
||
|
|
@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 *applyBtn;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) RCMicRoomViewModel *viewModel;
|
||
|
|
|
||
|
|
@property (nonatomic, strong) NSDictionary *dataDict;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|