如何在iOS上设置textview的高度

时间:2016-01-18 23:46:01

标签: ios objective-c height uitextview

如何在代码中设置textview的高度?

我在storyboard中创建了textView,在.h文件中为它创建了一个属性,并将textView连接到了storyboard中的属性。

我可以将文字设置为textView.text = @"some text"; 现在我想控制它的高度。

然而,虽然textView有许多文本属性,但它似乎没有高度属性。

任何人都可以提出一种方法来完成这项看似简单的任务吗?

1 个答案:

答案 0 :(得分:0)

没有约束:

CGRect frame = textView.frame;
frame.size.height = 100;
textView.frame = frame;

有约束:

textViewConstraintHeight = 100;

添加约束:

To add a constraint