我在视图底部有一个文本视图。在文本视图文本应该滚动之后,我需要显示最多4行文本。
这意味着如果用户输入
只有一行文字 - >显示单行文字
大于一行(1-4) - > textview height应该增加,它应该显示完整的文本
大于4 - > textview应该滚动
答案 0 :(得分:0)
我已将“AUIAutoGrowingTextView”库集成到我的项目中。 我把textView的heightConstraint出口作为
`VSS.require("TFS/WorkItemTracking/Services"], function(WIService) {
WIService.WorkItemFormService.getService().then(
function (service) {
service.getFieldValue(this._fieldName).then(
function (value) {
// do somth
});
service.setFieldValue(this._fieldName, value).then(
function (result) {
//do smth
});
});
});`
我在viewDidLoad()
中为textview修复了mixHeight属性@IBOutlet weak var messageTextViewHieghtConstarint: NSLayoutConstraint!