如何禁用自定义modalPresentationStyle的set supportedInterfaceOrientations

时间:2015-01-30 08:41:26

标签: ios iphone cocoa-touch ios8

我有一个控制器,其中:

modalPresentationStyle = .Custom

我需要使用纵向界面方向或根本禁用此视图控制器的旋转。在以下方法中:

supportedInterfaceOrientations(),shouldAutorotate()

我返回所需的值,但它们什么都不做,控制器在呈现时仍然会旋转。当我使用一些系统默认的modalPresentationStyle而不是预期的行为。

1 个答案:

答案 0 :(得分:0)

只需在自定义视图中添加这两个功能即可。 删除确实旋转,如果添加,将旋转方法或方向。 这将在所有方向打开,但在此之后没有改变,直到你解雇。

- (BOOL)shouldAutorotate{
    return NO;
}


- (NSUInteger)supportedInterfaceOrientations{
    return UIInterfaceOrientationMaskAll; 
}