21 lines
319 B
Objective-C
21 lines
319 B
Objective-C
//
|
|
// MessageCell.h
|
|
// xplan-ios
|
|
//
|
|
// Created by zu on 2021/11/28.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <NIMSDK/NIMSDK.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MessageCell : UITableViewCell
|
|
|
|
+ (CGFloat)measureHeight:(NIMMessage *)message;
|
|
- (void)renderWithMessage:(NIMMessage *)message;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|