gpt4 book ai didi

objective-c - 将 View 从横向转换为纵向?

转载 作者:可可西里 更新时间:2023-11-01 03:59:33 24 4
gpt4 key购买 nike

我已经开发了横向模式的应用程序,现在客户要求同时构建横向和纵向模式。

如何将横向 View 转换为纵向 View ?

现在我将此代码用于横向 View :

 - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{

return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight);

}

请帮帮我....

提前致谢:)

最佳答案

很简单,要支持所有方向,只需返回 YESshouldAutorotateToInterfaceOrientation

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation 
{
return YES;
//Or to support all but portrait upside down
return interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown;
}

关于objective-c - 将 View 从横向转换为纵向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12282119/

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