From a154c3ce81601e3c202d3c5f4d0a8cefc5a7e8ae Mon Sep 17 00:00:00 2001 From: wjc <1243177876@qq.com> Date: 星期三, 02 三月 2022 11:49:15 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/release0123' into wjc --- UMSdk/ApiDefinition.cs | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/UMSdk/ApiDefinition.cs b/UMSdk/ApiDefinition.cs new file mode 100644 index 0000000..3729511 --- /dev/null +++ b/UMSdk/ApiDefinition.cs @@ -0,0 +1,20 @@ +锘縰sing System; + +using ObjCRuntime; +using Foundation; +using UIKit; + +namespace UMSdk +{ + // @interface HDLUMSDK : NSObject + [BaseType(typeof(NSObject))] + [Protocol] + interface HDLUMSDK + { + // +(void)initUMSDKWithAppKey:(NSString *)appKey channel:(NSString *)channel; + [Static] + [Export("initUMSDKWithAppKey:channel:")] + void InitUMSDKWithAppKey(string appKey, string channel); + } +} + -- Gitblit v1.8.0