19 lines
385 B
Objective-C
19 lines
385 B
Objective-C
|
|
// Created by Tencent on 2023/06/09.
|
|
// Copyright © 2023 Tencent. All rights reserved.
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "TUIGroupMemberCellData.h"
|
|
|
|
@interface TUIGroupMemberCell : UICollectionViewCell
|
|
|
|
@property(nonatomic, strong) UIImageView *head;
|
|
|
|
@property(nonatomic, strong) UILabel *name;
|
|
|
|
+ (CGSize)getSize;
|
|
|
|
@property(nonatomic, strong) TUIGroupMemberCellData *data;
|
|
|
|
@end
|