gpt4 book ai didi

iphone - UIImage/UIView 不能正确调整到 UIInterfaceLandscape View

转载 作者:行者123 更新时间:2023-11-28 17:42:14 28 4
gpt4 key购买 nike

我正在编写一个我希望只能在横向模式下查看的应用程序。我已将其设置为如果 iPhone 处于纵向模式,则不会发生任何事情,当前图像仍处于横向模式。 iPhone 模拟器以横向模式启动,主页按钮在右侧。如果 iPhone 从一种横向模式旋转到另一种横向模式,则会出现动画并调整 View 。然而,每当设备处于横向模式且主页按钮位于左侧时,图像就会比需要的高 20 像素,从而在屏幕底部显示一条白线。

尽管所有尝试从逻辑上对此进行调整,例如

self.view.frame = CGRectMake (0,20, self.view.frame.size.width, self.view.frame.size.height)

它不能解决问题。我在计算中考虑了状态栏。

.xib 文件在 UIView 之上包含一个 UIImageView。这是我第一次实现这些方法,所以如果解决方案相对简单,我深表歉意。下面是用于实现横向模态视图的两种方法的代码。

-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {

//set up interface to only be viewed in Landscape

if(interfaceOrientation == UIInterfaceOrientationLandscapeLeft)
return interfaceOrientation;
else if(interfaceOrientation == UIInterfaceOrientationLandscapeRight)
return interfaceOrientation;
else
return NO;
}

-(void)willAnimateRotationToInterfaceOrientation:(UIInterfaceOrientation)tointerfaceOrientation duration:(NSTimeInterval)duration {

if(UIInterfaceOrientationLandscapeRight){
self.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
}
else if (UIInterfaceOrientationLandscapeLeft) {

//shouldn't adjustment to 20 fix the view?
self.view.frame = CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
}
else return;
}

最佳答案

要使 UIViews 正确调整 subview ,您必须查看此 UIView 属性:autoresizingMask,并将掩码设置为自动调整所需的大小,如果这不起作用,您将不得不重写:

- (void)layoutSubviews

来自引用:UIView reference

关于iphone - UIImage/UIView 不能正确调整到 UIInterfaceLandscape View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7681823/

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