gpt4 book ai didi

iphone - UIInterfaceOrientation 随 Header 一起旋转

转载 作者:行者123 更新时间:2023-12-03 21:20:52 26 4
gpt4 key购买 nike

当我将模拟器从纵向旋转为横向时,标题不旋转。我想使用 UIInterfaceOrientation 随 View 旋转一起旋转标题。 enter image description here

最佳答案

@renuga 我认为你需要在 View Controller 中实现这个方法。

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
{
if(toInterfaceOrientation == UIInterfaceOrientationLandscapeRight)
return YES;
if(toInterfaceOrientation == UIInterfaceOrientationPortrait)
return YES;
return NO;
}

转到 IB 并点击下面所示的箭头。

enter image description here

您需要调整标签栏的位置

关于iphone - UIInterfaceOrientation 随 Header 一起旋转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5000718/

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