Files
featherVoice/TUIKit/TUIChat/UI_Classic/Cell/Chat/TUIMediaCollectionCell.m
2025-08-08 10:49:36 +08:00

32 lines
675 B
Objective-C

//
// TUIMediaCollectionCell.m
// TUIChat
//
// Created by xiangzhang on 2021/11/22.
// Copyright © 2023 Tencent. All rights reserved.
//
#import "TUIMediaCollectionCell.h"
@interface TUIMediaCollectionCell()<V2TIMAdvancedMsgListener>
@end
@implementation TUIMediaCollectionCell
- (id)initWithFrame:(CGRect)frame {
self = [super initWithFrame:frame];
if (self) {
self.backgroundColor = [UIColor clearColor];
[self registerTUIKitNotification];
}
return self;
}
- (void)fillWithData:(TUIMessageCellData *)data {
return;
}
- (void)registerTUIKitNotification {
[[V2TIMManager sharedInstance] addAdvancedMsgListener:self];
}
@end