25 lines
497 B
Objective-C
25 lines
497 B
Objective-C
//
|
|
// MewNIMMessageMaker.h
|
|
// yinmeng-ios
|
|
//
|
|
// Created by 触海 on 2023/11/28.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <NIMSDK/NIMSDK.h>
|
|
|
|
@interface MewNIMMessageMaker : NSObject
|
|
|
|
+ (NIMMessage*)Mew_MsgWithText:(NSString *)text;
|
|
|
|
+ (NIMMessage *)Mew_MsgWithAudio:(NSString *)filePath;
|
|
|
|
+ (NIMMessage *)Mew_MsgWithImage:(UIImage *)image;
|
|
|
|
+ (NIMMessage *)Mew_MsgWithImagePath:(NSString *)path;
|
|
|
|
+ (NIMMessage *)Mew_MsgWithImageData:(NSData *)data extension:(NSString *)extension;
|
|
|
|
@end
|
|
|