繁体   English   中英

TSAlertView支持设备旋转

[英]TSAlertView enables device rotation

因为我需要更多自定义UIAlertView,所以我正在使用。 我的问题是,即使禁用了它,它也可以使设备向任何方向旋转。

在AlertView出现之前,横向模式已停用,但是当我调用show时,任何方向都是可能的。

这里发生了什么? 我没有UIAlertView的这种行为。

转到@implementation TSAlertViewController和检查shouldAutorotateToInterfaceOrientation

@implementation TSAlertViewController
- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
    return NO;
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM