查看导航栏的偏移量

发布于 2024-12-08 20:08:04 字数 307 浏览 0 评论 0原文

我设置了一个地点配置文件,可以在笔尖中显示地点信息。当我将此视图推入标准屏幕流程时,它工作正常。但是,当我从另一个选项卡推送此视图时,UINavigationBar 似乎会偏移它,请在此处查看图像 - http://imageshack.us/photo/my-images/525/screenshot20111006at225.png/ 我认为这可能是导航栏覆盖视图,但我不知道如何纠正这个问题。

I have a place profile set up that displays place information in a nib. When I push this view in the standard screen flow it works fine. However when I push this view from another tab the UINavigationBar seems to offset it please see image here - http://imageshack.us/photo/my-images/525/screenshot20111006at225.png/ I think it may be the navigation bar going over the view however I'm not sure how to correct this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

渡你暖光 2024-12-15 20:08:04
  1. 在 Interface Builder 中,确保视图自动调整大小,并且您已在“模拟指标”中打开导航栏,以便顶部 Y 坐标为 44 而不是零。哦,并确保您的导航栏没有设置为黑色半透明,而是黑色不透明。
  2. 要手动更正,请将 self.view.bounds 设置为特色视图的 viewWillAppearviewDidLoad (如果您使用手动坐标, viewDidLoad 很好,但我认为如果您使用 self.navigationController 的部分(例如 navigationBar< 的位置),则需要 viewWillAppear /代码>)。例如:

    - (void) viewDidLoad
    {
        [超级viewDidLoad];
        self.view.bounds = CGRectMake(0, 44, 320, 367); // 假设标签栏+导航栏
    }
    

  1. In Interface Builder, make sure the view is autosizing and you've turned on the Navigation Bar in "Simulated Metrics", so that the top Y coordinate is 44 as opposed to zero. Oh, and make sure your navigation bar isn't set to Black Translucent, but Black Opaque.
  2. To manually correct, set self.view.bounds to the right co-ordinates in your featured view's viewWillAppear or viewDidLoad (if you use manual coordinates, viewDidLoad is fine, but I think you need viewWillAppear if you're using parts of self.navigationController like the position of navigationBar). For example:

    - (void) viewDidLoad
    {
        [super viewDidLoad];
        self.view.bounds = CGRectMake(0, 44, 320, 367); // assuming tabbar+navbar
    }
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文