基础库
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.
 
 
 
 
 

25 line
501 B

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