react-native-navigation的迁移库

RNNEventEmitter.h 1.0KB

12345678910111213141516171819202122232425262728293031
  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. -(void)sendOnPreviewCompleted:(NSString *)componentId previewComponentId:(NSString *)previewComponentId;
  14. - (void)sendModalsDismissedEvent:(NSString *)componentId numberOfModalsDismissed:(NSNumber *)modalsDismissed;
  15. @end