作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个我希望只能在横向模式下查看的应用程序。我已将其设置为如果 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/
我正在编写一个我希望只能在横向模式下查看的应用程序。我已将其设置为如果 iPhone 处于纵向模式,则不会发生任何事情,当前图像仍处于横向模式。 iPhone 模拟器以横向模式启动,主页按钮在右侧。如
我是一名优秀的程序员,十分优秀!