(NSUInteger)supportedInterfaceOrientations没有在我的项目的UIViewController中使用的自定义框架中被调用,而在单独的项目中,它运行良好且被正确调用了
(BOOL)应该自动旋转 { 返回是; }
(NSUInteger)支持的接口方向 { 返回UIInterfaceOrientationMaskPortrait; }
(UIInterfaceOrientation)preferredInterfaceOrientationForPresentation { 返回UIInterfaceOrientationPortrait; }
有什么方法可以通过项目中的自定义框架调用它?