Files
featherVoice/TUIKit/TUIChat/UI_Classic/Cell/Custom/TUILinkCell.h
2025-08-08 10:49:36 +08:00

24 lines
494 B
Objective-C

//
// MyCustomCell.h
// TUIKitDemo
//
// Created by annidyfeng on 2019/6/10.
// Copyright © 2019 Tencent. All rights reserved.
//
#import <TIMCommon/TUIBubbleMessageCell.h>
#import <TIMCommon/TUIMessageCell.h>
#import "TUILinkCellData.h"
NS_ASSUME_NONNULL_BEGIN
@interface TUILinkCell : TUIBubbleMessageCell
@property UILabel *myTextLabel;
@property UILabel *myLinkLabel;
@property TUILinkCellData *customData;
- (void)fillWithData:(TUILinkCellData *)data;
@end
NS_ASSUME_NONNULL_END