How to prevent view resizing/transform when UINavigationBar hides/shows(UINavigationBar 隐藏/显示时如何防止视图调整大小/转换)
问题描述
我有一个带有标签栏和导航栏的应用程序.我推送一个用于显示照片的视图控制器,一次一张.它最初显示条形图和前进/后退控件;延迟后,这些隐藏,使用标签栏上的 setNavigationBarHidden:animated:
和自定义转换 (CGAffineTransformMakeTranslation
).这可行,但是显示照片的视图控制器 view 会上下跳跃.如果我将标签栏排除在等式之外,情况也是如此.
I have an application with a tab bar and a navigation bar. I push a view controller that is used to show photos, one at a time. It initially shows the bars and forward/back controls; after a delay, these hide, using setNavigationBarHidden:animated:
and a custom transform (CGAffineTransformMakeTranslation
) on the tab bar. This works, but the view controllers view , which shows the photo, leaps up and down. The same is true if I leave the tab bar out of the equation.
如何防止 UINavigationBar 移动我的视图?我希望照片在屏幕上保持固定,导航栏会下降到它的顶部.
How can I prevent the UINavigationBar from moving my view around? I would like the photo to stay fixed in the screen, with the nav bar dropping down over the top segment of it.
推荐答案
我知道这是一个老问题,但我通过在 Interface Builder 中禁用Autoresize Subviews"来实现这一点
I know this is an old question, but I accomplished that by disabling 'Autoresize Subviews' in Interface Builder
这篇关于UINavigationBar 隐藏/显示时如何防止视图调整大小/转换的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UINavigationBar 隐藏/显示时如何防止视图调整大小/转换
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01