Created
January 8, 2016 18:30
-
-
Save rt2zz/7795c6894b6d3e2af367 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import "RCTEventDispatcher.h" | |
#import "RCTRootView.h" | |
// somewhere in application:didFinishLaunchingWithOptions:( | |
self.bridge = rootView.bridge; | |
// sometime later | |
[self.bridge.eventDispatcher sendAppEventWithName:@"backgroundPositionResponse" body:JSON]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { NativeAppEventEmitter } from 'react-native' | |
NativeAppEventEmitter.addListener('backgroundPositionResponse', (data) => { | |
// ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment