标签: ios objective-c height uitextview
如何在代码中设置textview的高度?
我在storyboard中创建了textView,在.h文件中为它创建了一个属性,并将textView连接到了storyboard中的属性。
我可以将文字设置为textView.text = @"some text"; 现在我想控制它的高度。
textView.text = @"some text";
然而,虽然textView有许多文本属性,但它似乎没有高度属性。
任何人都可以提出一种方法来完成这项看似简单的任务吗?
答案 0 :(得分:0)
没有约束:
CGRect frame = textView.frame; frame.size.height = 100; textView.frame = frame;
有约束:
textViewConstraintHeight = 100;
添加约束: