21 lines
307 B
Objective-C
21 lines
307 B
Objective-C
//
|
|
// XPRoomMessageParser.h
|
|
// xplan-ios
|
|
//
|
|
// Created by 冯硕 on 2021/10/26.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@class NIMMessage;
|
|
|
|
@interface XPRoomMessageParser : NSObject
|
|
|
|
+ (NSAttributedString*)parseMessageAttribute:(NIMMessage *)message;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|