NativeBridge.h 431 B

12345678910111213141516171819202122232425
  1. //
  2. // NativeBridge.h
  3. // hola
  4. //
  5. // Created by Leon on 2024/4/28.
  6. //
  7. #import <Foundation/Foundation.h>
  8. #import <React/RCTBridgeModule.h>
  9. #import <React/RCTBridge.h>
  10. #import <React/RCTEventDispatcher.h>
  11. #import <React/RCTEventEmitter.h>
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface NativeBridge : NSObject<RCTBridgeModule>{
  14. }
  15. //+ (IMBridge *)shareManager;
  16. - (void)receiveMessage:(NSDictionary *)message;
  17. @end
  18. NS_ASSUME_NONNULL_END