本文介绍了界面构建器中的iOS多行标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何在iOS界面构建器中创建多行 UILabel
?我尝试了 UITextView
但它不太适合我的需要。
How can I make a multiline UILabel
in interface builder for iOS? I tried the UITextView
but it didn't quite suit my needs.
推荐答案
p>您必须分配 numberOfLines
属性。您可以通过代码执行此操作:
You have to assign numberOfLines
property. You can do it via code:
textLabel.numberOfLines = 5; // for example
或通过Interface Builder:
Or via Interface Builder:
这篇关于界面构建器中的iOS多行标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!