how to set scrollview content size with auto layout?(如何使用自动布局设置滚动视图内容大小?)
问题描述
我有一个屏幕,我在本端视图上添加了 1 个滚动视图.标签栏和导航栏都在那里,iPhone 4 的视图高度为 455.我在滚动视图上添加了更多内容.滚动视图和自身视图的高度相同.但是当我无法为滚动视图设置内容大小时.即使我也设置了它也不起作用.请帮助我.谢谢
I have one screen where I have added 1 scroll view on self view. Tab bar and navigation bar both are there and for iPhone 4 view height is 455.I have added more content on scroll view.the height of scroll view and self view is same.but when i am unable to set content size for scroll view.even i set too it is not working.Please help me. Thanks
推荐答案
下面是如何在 Auto Layout 中设置 contentView 的大小:
Here is how to set up the size of the contentView in Auto Layout:
- 为您的滚动视图添加一个视图.这应该是您的 scrollView 上唯一的顶级视图,它将用作您的 contentView.
- 将此 contentView 的左、上、右和下边缘约束到 scrollView 的左、上、右和底部,偏移量为 0.
- 要调整 contentView 的大小,请向 contentView 添加宽度和高度约束.如果想让它滚动,宽度和高度必须大于scrollView本身的宽度和高度.如果只想垂直滚动,请将 contentView 的宽度设置为等于 scrollView 的宽度.
这篇关于如何使用自动布局设置滚动视图内容大小?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用自动布局设置滚动视图内容大小?
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01