29 lines
480 B
C
29 lines
480 B
C
|
|
//
|
||
|
|
// MyVIPCardsCell.h
|
||
|
|
// TUICore
|
||
|
|
//
|
||
|
|
// Created by 末班车 on 2022/11/30.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "MyVipCarDatas.h"
|
||
|
|
#import "TUIChat/Cell/CellUI/Base/TUIMessageCell.h"
|
||
|
|
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface MyVIPCardsCell : TUIMessageCell
|
||
|
|
|
||
|
|
@property UILabel *myTextLabel;
|
||
|
|
@property UILabel *myLinkLabel;
|
||
|
|
|
||
|
|
@property UIImageView *icon;
|
||
|
|
|
||
|
|
@property (nonatomic,strong) MyVipCarDatas *customData;
|
||
|
|
|
||
|
|
-(void)fillWithData:(MyVipCarDatas *)data;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|