You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- #import <Foundation/Foundation.h>
- #import "ZhiyingCommNativeProtocol.h"
-
- NS_ASSUME_NONNULL_BEGIN
-
- @interface ZhiyingCommNative : NSObject
-
- /// 插件注册
- + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar;
-
- /// Native端注册,以提供Flutter端功能
- /// @param delegate 原生功能协议
- + (void)regist:(id<ZhiyingCommNativeProtocol>) delegate;
-
- @end
-
- NS_ASSUME_NONNULL_END
|