Files
midi_ios/TUIKit/TUIChat/UI_Classic/Cell/Chat/TUIMediaCollectionCell.m

32 lines
675 B
Mathematica
Raw Normal View History

2025-08-14 10:07:49 +08:00
//
// 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