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"}];

}

 

转载于:https://www.cnblogs.com/cui-cui/p/8874643.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值