gpt4 book ai didi

iphone - 在 iOS 6 中调整大小

转载 作者:行者123 更新时间:2023-12-03 21:16:10 25 4
gpt4 key购买 nike

我是 iOS 开发的新手,我正在尝试实现一个可旋转且可调整大小的用户界面。我遇到的问题是在旋转时重新设置 UI 元素的位置。我什至无法让下面的简单代码正常工作:

- (NSUInteger)supportedInterfaceOrientations {
return UIInterfaceOrientationMaskAllButUpsideDown;
}

- (BOOL)shouldAutorotate {
return YES;
}

- (void)willRotateToInterfaceOrientation:(UIInterfaceOrientation)toInterfaceOrientation
duration:(NSTimeInterval)duration {
[super willRotateToInterfaceOrientation:toInterfaceOrientation duration:duration];
if (toInterfaceOrientation == UIInterfaceOrientationLandscapeLeft ||
toInterfaceOrientation == UIInterfaceOrientationLandscapeRight) {
self.button.frame = CGRectMake(502.0, 207.0, 73.0, 44.0);
} else {
self.button.frame = CGRectMake(197.0, 69.0, 73.0, 44.0);
}
}

我已取消选择“自动调整 subview 大小”选项;但是,该按钮仍然位于同一位置。我已经记录了框架位置,它似乎具有正确的坐标,但它绝对不会以这种方式结束。

最佳答案

在实用程序检查的第一个面板中。取消选中使用自动布局。

enter image description here

关于iphone - 在 iOS 6 中调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12930606/

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