How to make a ScrollView with AutoLayout in Xcode5(如何在 Xcode5 中使用 AutoLayout 制作 ScrollView)
问题描述
在使用情节提要的 xcode 5 中,如何在启用自动布局的情况下制作一个完全可操作的垂直滚动滚动视图?
考虑到子视图有层次结构:
In xcode 5 using storyboards how would one make a fully operational vertical scrolling scrollview, with AutoLayout ON?
Considering the subviews have hierarchy:
1.UIView
2.UIScrollView
3.UIView (lets call this UIDetailView to make things easier)
请从代码到约束具体到任何视图是否必须更小等.
Please be specific from code to constraints to wether any of the views HAS to be smaller etc.
推荐答案
这篇博文详细介绍了如何使用 UIScrollView 和 Autolayout ON,使用纯自动布局方法.请注意,博客文章中的所有约束都是通过情节提要定义的.
This blog post details how to use a UIScrollView with Autolayout ON, using a pure autolayout approach. Note though that all constraints in the blog post are defined through the Storyboard.
帖子中的方法假定以下层次结构:
The approach in the post assumes the following hierarchy:
1. View (main view of my UIViewController)
2. Scroll View (UIScrollView)
3. Container View (UIView)
4. Content View (e.g. UIImageView)
我猜容器视图将是您的 UIDetailView,而内容视图将是您的 UIDetailView 中的任何 UIView.
I guess the Container View will be your UIDetailView, and the Content View will be any UIView inside your UIDetailView.
https://happyteamlabs.com/blog/ios-how-to-use-uiscrollview-with-auto-layout-pure-auto-layout/
这篇关于如何在 Xcode5 中使用 AutoLayout 制作 ScrollView的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Xcode5 中使用 AutoLayout 制作 ScrollView
基础教程推荐
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01