react-native-navigation的迁移库

RNNNavigationController.m 268B

123456789101112131415
  1. #import "RNNNavigationController.h"
  2. @implementation RNNNavigationController
  3. - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
  4. return self.viewControllers.lastObject.supportedInterfaceOrientations;
  5. }
  6. - (BOOL)isCustomTransitioned {
  7. return NO;
  8. }
  9. @end