为什么 UIScrollView 在 ios 6 和 ios 7 中从顶部留下空间

why UIScrollView is leaving space from top in ios 6 and ios 7(为什么 UIScrollView 在 ios 6 和 ios 7 中从顶部留下空间)
本文介绍了为什么 UIScrollView 在 ios 6 和 ios 7 中从顶部留下空间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我已关闭 Autolayout 并且 viewcontroller 嵌入在导航控制器中.我正在使用 Xcode 5,Storyboard.

I have turned off Autolayout and viewcontroller is embedded in navigation controller. I am using Xcode 5, Storyboard.

我不明白为什么它会从顶部留下空间.实际上,在故事板中,我将标签正好放在导航栏下方.但是当我在模拟器上运行它时,它会从顶部留下空间.

I don't understand why is it leaving space from top. Actually in storyboard i have put my label exactly below navigation bar. But when i run it on simulator then it leaves space from top.

解决此问题的一种巧妙方法

One of the hacky way to resolve this

-(void)viewWillLayoutSubviews
{
   self.scrollViewMain.frame = CGRectMake(0, -70, 320, 800);

   self.scrollViewMain.contentSize = CGSizeMake(320, 800);
}

但是我错过了一些非常简单的方法吗?

推荐答案

在 Xcode 5 中,在 storyboard 中选择你的控制器 > 在 Attribute Inspector 中禁用 Adjust Scroll View Insets还要检查你是否设置了任何 contentInset

In Xcode 5, in storyboard select your controller > in Attribute Inspector disable Adjust Scroll View Insets Also check if you have set any contentInset

编辑:我附上了一张照片

这篇关于为什么 UIScrollView 在 ios 6 和 ios 7 中从顶部留下空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)
Highlight Read-Along Text (in a storybook type app for iPhone)(突出显示朗读文本(在 iPhone 的故事书类型应用程序中))
Cocos2D + Disabling only Retina iPad Graphics(Cocos2D + 仅禁用 Retina iPad 图形)
How to convert 32 bit PNG to RGB565?(如何将 32 位 PNG 转换为 RGB565?)
Proper cocos2d scene restart?(正确的 cocos2d 场景重启?)