UITextView not visible on UIScrollView(UITextView 在 UIScrollView 上不可见)
问题描述
好的,所以我有一个 UIScrollView,它被限制在主视图的所有四个侧面,垂直和水平居中,并设置为与视图具有相等的宽度和高度.当我运行应用程序时,我放在 UIScrollView 顶部的所有子视图都会显示出来,正是我希望它们出现的位置,但只有底部的 UITextView 没有.似乎我已经尝试了所有约束组合,但无论我做什么,当我运行应用程序时它都不会出现.下面是界面生成器中的约束截图:
即使我在运行之前预览文件 Main.storyboard,它看起来也是这样的:
但是当我实际运行应用程序时,屏幕缺少 UITextView,即使我以多种方式更改了约束:
任何有关此问题的帮助将不胜感激!提前致谢.
避免将所有子视图直接放在 scrollView
中.自动布局将分解.你需要:
- 在
UIScrollView
内添加一个UIView
,约束条件为0
-0
-0
-0
到leading
-top
-bottom
-trailing
到UIScrollView
,然后把你所有的 subViews 放在那个UIView
里面.
之后,
- UIStoryBoard 的左侧面板(文档大纲),您可以按显示的红色箭头来查看缺少的内容或冲突的内容.
查看 Apple 文档更多细节.
Ok, so what I have is a UIScrollView that is constrained to all four sides of the main view, centered both vertically and horizontally, and set to have equal width and height to the view. All of the subviews that I put on top of the UIScrollView are showing up when I run the app, exactly where I want them to be, but only the UITextView at the bottom is not. It seems like I've tried every combination of constraints but it never appears when I run the app regardless of what I do. Here is a screenshot of the constraints in the interface builder:
And even when I preview the file Main.storyboard before running it looks like this:
But when I actually run the app, the screen is missing the UITextView, even when I alter the constraints in a number of ways:
Any help with this problem will be greatly appreciated! Thanks in advance.
Avoid putting all your subviews directly inside the scrollView
. The autolayout will break apart.
You need to :
- Add a
UIView
inside theUIScrollView
, with constraints0
-0
-0
-0
toleading
-top
-bottom
-trailing
to theUIScrollView
, and put all your subViews inside thatUIView
.
After that, you need to set the contentSize
of your UIScrollView
by code.
Also, you can:
add missing constraints
to see what is missing.
- The left panel in UIStoryBoard (Document Outline), you can press the red arrow showing up to see what is missing or conflicting.
Check out Apple documentation for more details.
这篇关于UITextView 在 UIScrollView 上不可见的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:UITextView 在 UIScrollView 上不可见
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- Android - 拆分 Drawable 2022-01-01
- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01