基础库
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ZhiyingCommNative.h 501 B

4 년 전
123456789101112131415161718192021222324
  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