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.
我很喜欢。我正在尝试制作一个应用程序,但我无法配置文本字段以将用户文本堆叠在前一个文本下,而不是在一个永无止境的行中向右运行。请帮忙!我需要的不仅仅是一个代码。我放在哪里???巫师档案?谢谢!
请这是阻止我!
您可以将换行符放入 textView 的 text 属性中:
self.textView.text = @"Foo\nBar";
您将在第一行获得“Foo”,在第二行获得“Bar”。