react-native-navigation的迁移库

RNNEventEmitter.h 845B

1234567891011121314151617181920212223242526
  1. #import <Foundation/Foundation.h>
  2. #import <React/RCTEventEmitter.h>
  3. #import <React/RCTBridgeModule.h>
  4. @interface RNNEventEmitter : RCTEventEmitter <RCTBridgeModule>
  5. -(void)sendOnAppLaunched;
  6. -(void)sendComponentDidAppear:(NSString*)componentId componentName:(NSString*)componentName;
  7. -(void)sendComponentDidDisappear:(NSString*)componentId componentName:(NSString*)componentName;
  8. -(void)sendOnNavigationButtonPressed:(NSString*)componentId buttonId:(NSString*)buttonId;
  9. -(void)sendBottomTabSelected:(NSNumber *)selectedTabIndex unselected:(NSNumber*)unselectedTabIndex;
  10. -(void)sendOnNavigationCommandCompletion:(NSString *)commandName params:(NSDictionary*)params;
  11. -(void)sendOnSearchBarUpdated:(NSString *)componentId text:(NSString*)text isFocused:(BOOL)isFocused;
  12. -(void)sendOnSearchBarCancelPressed:(NSString *)componentId;
  13. @end