22 lines
434 B
C
22 lines
434 B
C
|
|
//
|
||
|
|
// RoomHunxiangCell.h
|
||
|
|
// YaYin
|
||
|
|
//
|
||
|
|
// Created by bj_szd on 2023/4/13.
|
||
|
|
// Copyright © 2023 YaYin. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface RoomHunxiangCell : UICollectionViewCell
|
||
|
|
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *iconImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UIImageView *selImgV;
|
||
|
|
@property (weak, nonatomic) IBOutlet UILabel *nameLab;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|