增加换肤功能
This commit is contained in:
38
TUIKit/TUIGroup/BaseCell/CellUI/TUIGroupMembersCell.h
Normal file
38
TUIKit/TUIGroup/BaseCell/CellUI/TUIGroupMembersCell.h
Normal file
@@ -0,0 +1,38 @@
|
||||
|
||||
// Created by Tencent on 2023/06/09.
|
||||
// Copyright © 2023 Tencent. All rights reserved.
|
||||
#import <UIKit/UIKit.h>
|
||||
#import "TUIGroupMembersCellData.h"
|
||||
|
||||
@class TUIGroupMembersCell;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// TUIGroupMembersCellDelegate
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@protocol TUIGroupMembersCellDelegate <NSObject>
|
||||
|
||||
- (void)groupMembersCell:(TUIGroupMembersCell *)cell didSelectItemAtIndex:(NSInteger)index;
|
||||
@end
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// TUIGroupMembersCell
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@interface TUIGroupMembersCell : UITableViewCell
|
||||
|
||||
@property(nonatomic, strong) UICollectionView *memberCollectionView;
|
||||
|
||||
@property(nonatomic, strong) UICollectionViewFlowLayout *memberFlowLayout;
|
||||
|
||||
@property(nonatomic, weak) id<TUIGroupMembersCellDelegate> delegate;
|
||||
|
||||
@property(nonatomic) TUIGroupMembersCellData *data;
|
||||
|
||||
+ (CGFloat)getHeight:(TUIGroupMembersCellData *)data;
|
||||
|
||||
@end
|
||||
Reference in New Issue
Block a user