8

我正在尝试以编程方式添加一个UITextViewUIStackView但它没有出现在屏幕上。

当我签入 Debug View Hierarchy 时,它位于视图层次结构中,并且有一些约束,但未显示在输出视图中。

这是我的代码:

let stackView = UIStackView()

let textView = UITextView()
let button = UIButton()

stackView.axis = .Horizontal
stackView.spacing = 20
stackView.distribution = UIStackViewDistribution.Fill

button.setImage(UIImage(named:"image1"), forState: .Normal)
button.setImage(UIImage(named:"image2"), forState: .Selected)


textView.textAlignment = NSTextAlignment.Left
textView.textColor = UIColor.blackColor()
textView.editable = true
textView.text = ""

stackView.addArrangedSubview(textView)
stackView.addArrangedSubview(button)

按钮添加得很好。但我找不到正确显示 TextView 的方法!尝试添加如下所示的宽度/高度约束,但效果不佳或效果不佳(取决于变体):

let widthConstraint = NSLayoutConstraint(item: textView,
                 attribute: NSLayoutAttribute.Width,
                 relatedBy: NSLayoutRelation.Equal,
                 toItem: stackView,
                 attribute: NSLayoutAttribute.Width,
                 multiplier: 1,
                 constant: 0)
stackView.addConstraint(widthConstraint)
let heightConstraint = NSLayoutConstraint(item: textView, attribute:   NSLayoutAttribute.Height, relatedBy: NSLayoutRelation.Equal, toItem: stackView, attribute: NSLayoutAttribute.Height, multiplier: 1, constant: 0)
stackView.addConstraint(heightConstraint)

但是,当我添加 a UITextField, not时UITextView,它可以正常工作,没有任何限制。

4

3 回答 3

20

UITextView是的子类,UIScrollView因此它的大小在内部是不明确的UIStackVIew。为了使大小明确,你让它根据它的内容调整大小 - 即使不可滚动。那么简单的解决方案是:

textView.isScrollEnabled = false

(Swift 3.0 语法)

于 2016-10-16T14:54:07.550 回答
2

我弄清楚缺少什么。我不能使用指定的初始化程序,因为我不知道要在其中创建它的类中文本视图的帧大小。

但这有帮助 - 在上面的代码中的 stackView.distribution 之后添加这一行:

 self.alignment = UIStackViewAlignment.Fill
于 2015-11-07T06:47:39.643 回答
1

尝试使用

init(frame frame: CGRect,textContainer textContainer: NSTextContainer?)

因为它是 UITextView 的指定初始化程序。

于 2015-11-03T12:19:32.990 回答