12345678910111213141516171819202122232425 |
-
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import "RNNRootViewController.h"
-
- typedef void (^RNNTransitionCompletionBlock)(id result);
-
- @interface RNNStore : NSObject
-
- -(UIViewController*) findContainerForId:(NSString*)containerId;
- -(void) setContainer:(UIViewController*)viewController containerId:(NSString*)containerId;
- -(void) removeContainer:(NSString*)containerId;
- -(void) removeContainerByViewControllerInstance:(UIViewController*)containerInstance;
-
- -(NSString*)containerKeyForInstance:(UIViewController*)instance;
-
- -(void) setReadyToReceiveCommands:(BOOL)isReady;
- -(BOOL) isReadyToReceiveCommands;
-
- -(NSMutableArray*) pendingModalIdsToDismiss;
-
- -(void) clean;
-
- @end
|