react-native-navigation的迁移库

RNNNavigationController.m 222B

1234567891011
  1. #import "RNNNavigationController.h"
  2. @implementation RNNNavigationController
  3. - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
  4. return self.viewControllers.lastObject.supportedInterfaceOrientations;
  5. }
  6. @end