18 lines
363 B
Objective-C
18 lines
363 B
Objective-C
//
|
|
// MessageContentChatHallHeadView.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2024/5/16.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "MessageBaseModel.h"
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MessageContentChatHallHeadView : UIView
|
|
-(instancetype)initWithFrame:(CGRect)frame isSelf:(BOOL)isSelf;
|
|
- (void)render:(nonnull MessageBaseModel *)model;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|