Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @implementation DismissViewControllerManager
  2.  
  3. RCT_EXPORT_MODULE();
  4.  
  5. RCT_EXPORT_METHOD(goBack) {
  6.   [[NSNotificationCenter defaultCenter] postNotificationName:@"dismiss_rct_modal" object:nil];
  7. }
  8.  
  9. RCT_EXPORT_METHOD(goToCompany:(NSString *)companyId) {
  10.   [[NSNotificationCenter defaultCenter] postNotificationName:@"go_to_company" object:nil userInfo:@{@"company_id": companyId}];
  11. }
  12.  
  13. @end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement