24 lines
494 B
C
24 lines
494 B
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
|