送礼物可以发送自定义消息

This commit is contained in:
fengshuo
2021-11-16 19:56:37 +08:00
parent b4c50569dd
commit 1a4b6b537a
17 changed files with 403 additions and 17 deletions

View File

@@ -11,6 +11,7 @@
#import <NIMSDK/NIMSDK.h>
///Tool
#import "XPConstant.h"
#import "CustomAttachmentDecoder.h"
@implementation AppDelegate (ThirdConfig)
@@ -37,6 +38,9 @@
NIMSDKOption *option = [NIMSDKOption optionWithAppKey:appKey];
option.apnsCername = KeyWithType(KeyType_APNSCer);
[[NIMSDK sharedSDK] registerWithOption:option];
// NIM SDK
[NIMCustomObject registerCustomDecoder:[[CustomAttachmentDecoder alloc] init]];
}
@end