gpt4 book ai didi

ios - 旋转横向和纵向

转载 作者:行者123 更新时间:2023-11-29 04:57:08 24 4
gpt4 key购买 nike

我在 UIView 中旋转时遇到问题,在 UIView 中我有 UIimage 和 UI 工具栏当我更改不同的旋转时,UIImage 和 UIToolBar 也应该更改

最佳答案

对于 iOS 6,在您的 View Controller 中执行此操作,

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
return UIInterfaceOrientationIsPortrait(interfaceOrientation);
}

- (BOOL)shouldAutorotate {
return YES;
}

- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskPortrait
| UIInterfaceOrientationMaskPortraitUpsideDown
| UIInterfaceOrientationLandscapeLeft;
}

这将使纵向、颠倒纵向和横向的方向向左。

关于ios - 旋转横向和纵向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7721885/

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