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 隐藏/显示时如何防止视图调整大小/转换
基础教程推荐
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
