-(NSUInteger)supportedInterfaceOrientations不会通过项目中的自定义框架调用

时间:2018-11-22 05:59:33

标签: objective-c ios9 shouldautorotate

  • (NSUInteger)supportedInterfaceOrientations没有在我的项目的UIViewController中使用的自定义框架中被调用,而在单独的项目中,它运行良好且被正确调用了

    • (BOOL)应该自动旋转 { 返回是; }

    • (NSUInteger)支持的接口方向 { 返回UIInterfaceOrientationMaskPortrait; }

    • (UIInterfaceOrientation)preferredInterfaceOrientationForPresentation { 返回UIInterfaceOrientationPortrait; }

有什么方法可以通过项目中的自定义框架调用它?

1 个答案:

答案 0 :(得分:0)

发生这种情况的原因多种多样。选中此项。enter image description here

在“设备”中,检查iPad和iPhone的方向,然后仅选择“纵向”。然后将调用委托方法。