iOS原生調用RN


參考鏈接:https://www.jianshu.com/p/668024972b44

這塊之前按照文檔寫,寫的不完整,報錯  bridge is not set. 

 

首先繼承RCTEventEmitter,實現suppportEvents方法並調用self sendEventWithName:

 

#import <Foundation/Foundation.h>

#import <React/RCTBridgeModule.h>

#import <React/RCTEventEmitter.h>

@interface NoticaManager : RCTEventEmitter<RCTBridgeModule>

 

@end

 

 

 

#import "NoticaManager.h"

 

@implementation NoticaManager

RCT_EXPORT_MODULE();

 

-(id)init

{

  self = [super init];

  

  if (self) {

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receivePushNotificateRN:) name:@"EventReminder" object:nil];

  }

  return self;

  

}

- (NSArray<NSString *> *)supportedEvents

{

  return @[@"EventReminder"];

}

 

- (void)receivePushNotificateRN:(NSNotification *)notification

{

  NSString *eventName = notification.userInfo[@"name"];

  [self sendEventWithName:@"EventReminder" body:@{@"name": eventName}];

}

@end

 

JavaScript代碼可以創建一個包含你的模塊的NativeEventEmitter實例來訂閱這些事件。導入NativeModules,NativeEventEmitter

import {
Platform,
StyleSheet,
Text,
View,
AppRegistry,
NativeModules,
NativeEventEmitter

} from 'react-native';
const { NoticaManager } = NativeModules;
const calendarManagerEmitter = new NativeEventEmitter(NoticaManager);
componentDidMount(){

const subscription = calendarManagerEmitter.addListener(
'EventReminder',
(reminder) => console.log(reminder.name)
);

}



原生調用交互入口:

#import "SecondViewController.h"

#import "NoticaManager.h"

@interface SecondViewController ()

 

@end

 

@implementation SecondViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

  self.view.backgroundColor = [UIColor redColor];

  UIButton*btn = [UIButton new];

  btn.frame = CGRectMake(100, 60, 100, 40);

  [btn setTitle:@"調用RN" forState:UIControlStateNormal];

  [btn addTarget:self action:@selector(clickBtn) forControlEvents:UIControlEventTouchUpInside];

  [self.view addSubview:btn];

  NoticaManager*managet = [[NoticaManager alloc]init];

    // Do any additional setup after loading the view.

}

-(void)clickBtn{

  

  [[NSNotificationCenter defaultCenter] postNotificationName:@"EventReminder" object:nil userInfo:@{@"name":@"li"}];

}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM