gpt4 book ai didi

ios - 使用自动调整大小时,UIView 不会在旋转时调整大小

转载 作者:行者123 更新时间:2023-11-28 22:00:29 24 4
gpt4 key购买 nike

我有一个以横向模式启动的应用程序,并且我创建了以下 UIView 以全屏显示。

- (void)loadSignupScreen {

CGFloat screenHeight = self.view.frame.size.height;
CGFloat screenWidth = self.view.frame.size.width;

self.signupContainer = [[UIView alloc] initWithFrame:self.view.bounds];
[self.signupContainer setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight|UIViewAutoresizingFlexibleBottomMargin|UIViewAutoresizingFlexibleLeftMargin|UIViewAutoresizingFlexibleRightMargin|UIViewAutoresizingFlexibleTopMargin];

UIImageView *bgImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, screenWidth, screenHeight)];
[bgImageView setBackgroundColor:[UIColor darkGrayColor]];
[bgImageView setAlpha:0.8];


[self.signupContainer addSubview:bgImageView];
[self.view addSubview:self.signupContainer];

问题是,当我将屏幕旋转为纵向时,它不是全屏,而是看起来只有屏幕长度的 3/4 左右。如何让它在旋转时填满屏幕?在编程时使用 IB 中的自动调整大小没有问题。

谢谢

最佳答案

您将错误的 autoresizingMask 分配给了 signupContainer。它应该只是灵活的高度和宽度。

[self.signupContainer setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];

此外,UIImageView 需要一个 autoresizingMask

UIImageView *bgImageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, screenWidth, screenHeight)];
[bgImageView setAutoresizingMask:UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight];

关于ios - 使用自动调整大小时,UIView 不会在旋转时调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25268625/

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