This commit is contained in:
启星
2025-08-08 10:49:36 +08:00
parent 6400cf78bb
commit b5ce3d580a
8780 changed files with 978183 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
//
// TUIGroupPinCell.h
// TUIChat
//
// Created by Tencent on 2024/05/20.
// Copyright © 2023 Tencent. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <TIMCommon/NSString+TUIEmoji.h>
#import <TIMCommon/TIMCommonModel.h>
#import <TIMCommon/TIMDefine.h>
#import <TUICore/NSDictionary+TUISafe.h>
#import <TUICore/TUICore.h>
#import <TUICore/TUILogin.h>
#import <TIMCommon/TUIBubbleMessageCellData.h>
#import <TIMCommon/TUIMessageCellData.h>
NS_ASSUME_NONNULL_BEGIN
@interface TUIGroupPinCellView : UIView
@property (nonatomic, copy) void(^onClickRemove)(V2TIMMessage *originMessage);
@property (nonatomic, copy) void(^onClickCellView)(V2TIMMessage *originMessage);
@property (nonatomic, strong) TUIMessageCellData *cellData;
@property (nonatomic, strong) UIImageView *leftIcon;
@property (nonatomic, strong) UILabel * titleLabel;
@property (nonatomic, strong) UILabel * content;
@property (nonatomic, strong) UIButton * removeButton;
@property (nonatomic, strong) UIView * multiAnimationView;
@property (nonatomic, strong) UIView * bottomLine;
@property (nonatomic, assign) BOOL isFirstPage;
- (void)fillWithData:(TUIMessageCellData *)cellData;
- (void)hiddenMultiAnimation;
- (void)showMultiAnimation;
@end
@interface TUIGroupPinCell : UITableViewCell
@property (nonatomic,strong) TUIGroupPinCellView* cellView;
- (void)fillWithData:(TUIMessageCellData *)cellData;
@end
NS_ASSUME_NONNULL_END