gpt4 book ai didi

ios - 显示纵向框架和边界的 iPad 横向

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:46:47 26 4
gpt4 key购买 nike

我正在使用 Storyboard开发 iPad 横向应用程序。我已经完成了以下步骤。我的应用程序屏幕在模拟器上以 Landscape 打开。但是出现错误的帧。

  1. 来自 xcode 的 Storyboard示例应用模板。
  2. 仅允许来自 info-plist 文件的横向
  3. Storyboard -> UIViewController -> 模拟矩阵 -> 将方向更改为横向
  4. 在view controller.m中实现了下面的方法

           - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)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}}

我错过了什么吗?

最佳答案

在 viewDidLoad 方法中,您没有获得正确的边界。您在 viewDidAppear 方法中执行此操作。 viewDidAppear 方法在 View 完全加载并具有正确边界时调用。

关于ios - 显示纵向框架和边界的 iPad 横向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16557427/

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