1234567891011121314151617181920212223242526272829 |
- #import "RNNNavigationOptions.h"
-
- typedef void (^RNNReactViewReadyCompletionBlock)(void);
-
- @interface RNNBasePresenter : NSObject
-
- @property(nonatomic, weak) id boundViewController;
-
- @property(nonatomic, strong) NSString *boundComponentId;
-
- - (void)bindViewController:(UIViewController *)boundViewController;
-
- - (void)applyOptionsOnInit:(RNNNavigationOptions *)initialOptions;
-
- - (void)applyOptionsOnViewDidLayoutSubviews:(RNNNavigationOptions *)options;
-
- - (void)applyOptions:(RNNNavigationOptions *)options;
-
- - (void)applyOptionsOnWillMoveToParentViewController:(RNNNavigationOptions *)options;
-
- - (void)applyDotIndicator:(UIViewController *)child;
-
- - (void)mergeOptions:(RNNNavigationOptions *)newOptions currentOptions:(RNNNavigationOptions *)currentOptions defaultOptions:(RNNNavigationOptions *)defaultOptions;
-
- - (void)renderComponents:(RNNNavigationOptions *)options perform:(RNNReactViewReadyCompletionBlock)readyBlock;
-
- - (void)viewDidLayoutSubviews;
- @end
|