基础库
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

19 行
407 B

  1. #import <Foundation/Foundation.h>
  2. #import "ZhiyingCommNativeProtocol.h"
  3. NS_ASSUME_NONNULL_BEGIN
  4. @interface ZhiyingCommNative : NSObject
  5. /// 插件注册
  6. + (void)registerWithRegistrar:(NSObject<FlutterPluginRegistrar>*)registrar;
  7. /// Native端注册,以提供Flutter端功能
  8. /// @param delegate 原生功能协议
  9. + (void)regist:(id<ZhiyingCommNativeProtocol>) delegate;
  10. @end
  11. NS_ASSUME_NONNULL_END