Jak mogę wysłać wydarzenie do JavaScript w Swift?Reaguj na Natywne wysyłanie wydarzeń do JavaScript w Swift
Istnieją przykłady kodu Objc, jak wysłać zdarzenie do JavaScript, ale muszę zrobić w szybkim tempie?
#import "RCTBridge.h"
#import "RCTEventDispatcher.h"
@implementation CalendarManager
@synthesize bridge = _bridge;
- (void)calendarEventReminderReceived:(NSNotification *)notification
{
NSString *eventName = notification.userInfo[@"name"];
[self.bridge.eventDispatcher sendAppEventWithName:@"EventReminder"
body:@{@"name": eventName}];
}
@end
[Zobacz ten post] (https://github.com/facebook/react-native/issues/8714#issuecomment-234437319). –