Skip to content

Instantly share code, notes, and snippets.

@ozcanzaferayan
Created February 4, 2020 19:53
Show Gist options
  • Save ozcanzaferayan/9fc3088824fbf214b037ee945dcafead to your computer and use it in GitHub Desktop.
Save ozcanzaferayan/9fc3088824fbf214b037ee945dcafead to your computer and use it in GitHub Desktop.
@interface Person : NSObject <RCTBridgeModule>
@end
@implementation Logger
RCT_EXPORT_MODULE()
RCT_EXPORT_METHOD(greet:(NSString *)name)
{
NSLog(@"Merhaba %@!", name);
[_bridge.eventDispatcher sendAppEventWithName:@"greeted"
body:@{ @"name": name }];
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment