1234567891011121314151617181920212223242526 |
- #import "RNNNavigationOptions.h"
-
- typedef void (^RNNReactViewReadyCompletionBlock)(void);
-
- @interface RNNBasePresenter : NSObject
-
- @property (nonatomic, weak) id bindedViewController;
-
- @property (nonatomic, strong) NSString* bindedComponentId;
-
- - (void)bindViewController:(UIViewController *)bindedViewController;
-
- - (void)applyOptionsOnInit:(RNNNavigationOptions *)initialOptions;
-
- - (void)applyOptions:(RNNNavigationOptions *)options;
-
- - (void)applyOptionsOnSetViewControllers:(RNNNavigationOptions *)options;
-
- - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options;
-
- - (void)mergeOptions:(RNNNavigationOptions *)newOptions currentOptions:(RNNNavigationOptions *)currentOptions defaultOptions:(RNNNavigationOptions *)defaultOptions;
-
- - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock;
-
- @end
|