1234567891011121314151617181920212223242526272829303132333435 |
-
- #import <Foundation/Foundation.h>
- #import <UIKit/UIKit.h>
- #import "RNNLayoutNode.h"
- #import "RNNRootViewCreator.h"
- #import "RNNEventEmitter.h"
- #import "RNNNavigationOptions.h"
- #import "RNNAnimator.h"
- #import "RNNTopTabsViewController.h"
- #import "RNNRootViewProtocol.h"
-
- @interface RNNRootViewController : UIViewController <RNNRootViewProtocol>
-
- @property (nonatomic, strong) RNNNavigationOptions* options;
- @property (nonatomic, strong) RNNEventEmitter *eventEmitter;
- @property (nonatomic, strong) NSString* componentId;
- @property (nonatomic, strong) RNNTopTabsViewController* topTabsViewController;
- @property (nonatomic) id<RNNRootViewCreator> creator;
- @property (nonatomic, strong) RNNAnimator* animator;
-
- -(instancetype)initWithName:(NSString*)name
- withOptions:(RNNNavigationOptions*)options
- withComponentId:(NSString*)componentId
- rootViewCreator:(id<RNNRootViewCreator>)creator
- eventEmitter:(RNNEventEmitter*)eventEmitter
- isExternalComponent:(BOOL)isExternalComponent;
-
-
- -(void)applyTabBarItem;
- -(void)applyTopTabsOptions;
-
- -(BOOL)isCustomTransitioned;
-
- @end
|