
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
35 lines
720 B
Objective-C
35 lines
720 B
Objective-C
//
|
|
// NIMMessageMaker.h
|
|
// YUMI
|
|
//
|
|
// Created by zu on 2021/11/28.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <NIMSDK/NIMSDK.h>
|
|
|
|
@interface NIMMessageMaker : NSObject
|
|
|
|
+ (NIMMessage*)msgWithText:(NSString *)text;
|
|
|
|
+ (NIMMessage *)msgWithAudio:(NSString *)filePath;
|
|
|
|
+ (NIMMessage *)msgWithImage:(UIImage *)image;
|
|
|
|
+ (NIMMessage *)msgWithImagePath:(NSString *)path;
|
|
|
|
+ (NIMMessage *)msgWithImageData:(NSData *)data extension:(NSString *)extension;
|
|
|
|
+ (NIMMessage *)msgWithVideo:(NSString *)filePath;
|
|
|
|
@end
|
|
|
|
|
|
@interface NIMCommentMaker : NSObject
|
|
|
|
+ (NIMQuickComment *)commentWithType:(int64_t)type
|
|
content:(NSString *)content
|
|
ext:(NSString *)ext;
|
|
|
|
@end
|