gpt4 book ai didi

iphone - shouldAutorotateToInterfaceOrientation 不工作

转载 作者:行者123 更新时间:2023-11-28 23:01:24 25 4
gpt4 key购买 nike

- (BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
return YES;
}

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation duration:(NSTimeInterval)duration
{
}

不工作,我不知道为什么。当我尝试调试和旋转设备时,这些方法没有被调用。

我只想检测方向如果方向 = 风景执行 Action 别的执行 Action b

非常感谢

最佳答案

我同意 Clafou 的观点,您的应用设置方式可能会影响旋转。

添加这个,看看它是否触发:

-(void)didRotateFromInterfaceOrientation:(UIInterfaceOrientation)fromInterfaceOrientation {
BOOL isPortraitOrientation;

if ((self.interfaceOrientation == UIDeviceOrientationPortrait) || (self.interfaceOrientation == UIDeviceOrientationPortraitUpsideDown)){

isPortraitOrientation = YES;

} else if((self.interfaceOrientation == UIDeviceOrientationLandscapeLeft) || (self.interfaceOrientation == UIDeviceOrientationLandscapeRight)){

isPortraitOrientation = NO;

}
}

关于iphone - shouldAutorotateToInterfaceOrientation 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9980077/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com