Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在制作我的第一个文本字段,并且我正在寻找更多该人可以填写的文本区域。Xcode 为我禁用了将其扩展到多行的能力。是否可以?如果是这样,我该怎么做?
谢谢!
您需要一个UITextView,这是一个可编辑的字段,可以容纳多行文本。
UITextView
多行UITextField由 实现UITextView并确保其editable属性设置为YES。
UITextField
editable
YES
该类UITextView实现了可滚动的多行文本区域的行为。