UITextView 在 UIScrollView 上不可见 [英] UITextView not visible on UIScrollView

查看:19
本文介绍了UITextView 在 UIScrollView 上不可见的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

好的,所以我有一个 UIScrollView,它被限制在主视图的所有四个侧面,垂直和水平居中,并设置为与视图具有相等的宽度和高度.当我运行应用程序时,我放在 UIScrollView 顶部的所有子视图都会显示出来,正是我希望它们出现的位置,但只有底部的 UITextView 没有.似乎我已经尝试了所有约束组合,但无论我做什么,当我运行应用程序时它都不会出现.下面是界面生成器中的约束截图:

即使我在运行之前预览文件 Main.storyboard,它看起来也是这样的:

但是当我实际运行应用程序时,屏幕缺少 UITextView,即使我以多种方式更改了约束:

任何有关此问题的帮助将不胜感激!提前致谢.

解决方案

避免将所有子视图直接放在 scrollView 中.自动布局将分解.你需要:

  • UIScrollView内添加一个UIView,约束条件为0-0-0-0leading-top-bottom-trailingUIScrollView,然后把你所有的 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 the UIScrollView, with constraints 0-0-0-0 to leading-top-bottom-trailing to the UIScrollView, and put all your subViews inside that UIView.

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 上不可见的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆