UIScrollView won#39;t scroll!(UIScrollView 不会滚动!)
问题描述
在 IB 中,我有我的 UIView.然后我有一个带有 UIScrollView 作为子视图的子 UIView.然后 UIScrollView 有一个子 UIImageView.UIScrollView 和 UIImageView 的大小相同.它们比作为子视图的 UIView 大得多.我认为这会使滚动工作.它没有.滚动视图是否需要某种代码才能工作?
In IB I have my UIView. Then I have a sub-UIView with a UIScrollView as a sub view. Then the UIScrollView has a sub-UIImageView. The UIScrollView and UIImageView are the same size. They're much bigger than the UIView of which they are subviews. I assumed this would make scrolling work. It doesn't. Is some sort of code required for scroll views to work?
推荐答案
您需要设置 UIScrollView.contentSize
以匹配总的可滚动大小,在这种情况下是您的子视图框架大小.
You need to set UIScrollView.contentSize
to match the total scrollable size, which is your subview frame size in this case.
这篇关于UIScrollView 不会滚动!的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UIScrollView 不会滚动!
基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01