react-native-navigation的迁移库

UIViewController+LayoutProtocol.h 927B

1234567891011121314151617181920212223242526272829
  1. #import <UIKit/UIKit.h>
  2. #import "RNNEventEmitter.h"
  3. #import "RNNLayoutProtocol.h"
  4. typedef void (^RNNReactViewReadyCompletionBlock)(void);
  5. @interface UIViewController (LayoutProtocol) <RNNLayoutProtocol>
  6. - (void)renderTreeAndWait:(BOOL)wait perform:(RNNReactViewReadyCompletionBlock)readyBlock;
  7. - (UIViewController *)getCurrentChild;
  8. - (void)mergeOptions:(RNNNavigationOptions *)options;
  9. - (RNNNavigationOptions *)resolveOptions;
  10. - (void)setDefaultOptions:(RNNNavigationOptions *)defaultOptions;
  11. - (void)overrideOptions:(RNNNavigationOptions *)options;
  12. @property (nonatomic, retain) RNNBasePresenter* presenter;
  13. @property (nonatomic, retain) RNNLayoutInfo* layoutInfo;
  14. @property (nonatomic, strong) RNNNavigationOptions* options;
  15. @property (nonatomic, strong) RNNNavigationOptions* defaultOptions;
  16. @property (nonatomic, strong) RNNEventEmitter* eventEmitter;
  17. @property (nonatomic) id<RNNRootViewCreator> creator;
  18. @end