我正在使用 Storyboard 开发 iPad 横向应用程序。我已经完成了以下步骤。我的应用是在模拟器上以横向模式打开屏幕。但帧错误。
- 来自 xcode 的 Storyboard示例应用模板。
- 只允许 info-plist 文件中的横向显示
- Storyboard -> UIViewController -> 模拟矩阵 -> 将方向更改为横向
在view controller.m中实现下面的方法
- (BOOL)shouldAutorotateToInterfaceOrientationUIInterfaceOrientation)interfaceOrientation
{
// Return YES for supported orientations
return ((interfaceOrientation == UIInterfaceOrientationLandscapeLeft) || (interfaceOrientation == UIInterfaceOrientationLandscapeRight));
}
现在,当我获取框架的 NSLog 并设置边界时,它会显示纵向框架。
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
NSLog(@"bounds ::%@",NSStringFromCGRect(self.view.bounds));
NSLog(@"frame ::%@",NSStringFromCGRect(self.view.frame));
}
结果日志:
bounds ::{{0, 0}, {748, 1024}}
frame ::{{20, 0}, {748, 1024}}
我错过了什么吗?
Best Answer-推荐答案 strong>
在 viewDidLoad 方法中,您没有得到正确的界限。您在 viewDidAppear 方法中执行此操作。 viewDidAppear 方法在 View 完全加载并具有正确边界时调用。
关于ios - iPad 横向显示纵向框架和边界,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/16557427/
|