为什么UIScrollView在顶部留下空间并且不滚动到底部

Why is UIScrollView leaving space on top and does not scroll to the bottom(为什么UIScrollView在顶部留下空间并且不滚动到底部)
本文介绍了为什么UIScrollView在顶部留下空间并且不滚动到底部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我是 Objective-C 编程的新手.

我正在使用带有一些标签、图像和文本视图的 UIScrollView.

我已经关闭了自动布局,并且已经尝试开启(标题中描述的情况)和关闭(不滚动)调整滚动视图插图".

这是我在 viewDidLoad 中插入的内容:

 [scroller setScrollEnabled:YES];[滚轮 setContentSize:CGSizeMake(320, 687)];

但我一定遗漏了一些非常简单的东西.

解决方案

1...为什么UIScrollView在顶部留下空间

使用 Storyboard- 转到视图控制器 > 属性检查器 > 取消选中 Adjust Scroll View Insets 属性

With Code- 额外空间设置viewController属性automaticallyAdjustsScrollViewInsetsNO,默认为.

self.automaticallyAdjustsScrollViewInsets = false;scroller.contentInset = UIEdgeInsetsZero;scroller.scrollIndicatorInsets = UIEdgeInsetsZero;scroller.contentOffset = CGPointMake(0.0, 0.0);

<块引用>

2...不滚动到底部

要使其滚动,请尝试在 contentSize 中使用较大的数字,例如 CGSizeMake(320, 1687).如果它有效,则意味着您没有将 contentSize 设置得足够大以容纳其所有内容.

I am new to objective-C programming.

I am using UIScrollView with some labels, image and text view on it.

I have turned off Autolayout and already tried with "Adjust scroll View Insets" on (situation described in title) and off (doesn't scroll).

This is what I insert into viewDidLoad:

    [scroller setScrollEnabled:YES];
[scroller setContentSize:CGSizeMake(320, 687)];

But I must be missing something very simple.

解决方案

1... Why is UIScrollView leaving space on top

With Storyboard- Goto view controller > Attribute Inspector > Uncheck Adjust Scroll View Insets property

With Code- For extra space set viewController property automaticallyAdjustsScrollViewInsets to NO, by default it is YES.

self.automaticallyAdjustsScrollViewInsets = false; 
scroller.contentInset = UIEdgeInsetsZero;
scroller.scrollIndicatorInsets = UIEdgeInsetsZero;
scroller.contentOffset = CGPointMake(0.0, 0.0);

2... does not scroll to the bottom

To make it scroll try with large number in contentSize like CGSizeMake(320, 1687). If it works that means you are not setting the contentSize large enough to have all its content.

这篇关于为什么UIScrollView在顶部留下空间并且不滚动到底部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

Hardware Volume buttons change in app volume(硬件音量按钮更改应用程序音量)
Cocos2d - How to check for Intersection between objects in different layers(Cocos2d - 如何检查不同层中对象之间的交集)
Resume game cocos2d(恢复游戏 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?)