UITextView如何在上一行上方显示新文本?

时间:2014-08-06 03:05:32

标签: ios text nsstring uitextview

我正在尝试,正如标题所示,在UITextView中的上一行显示 的新行。我无法在网络上的任何地方找到这个,我真的需要帮助。这是我方法中当前的代码:

[textBox setScrollEnabled:YES];

[textBox setContentSize:CGSizeMake(320, 170)];

textBox.text = [NSString stringWithFormat:@"\nIts pitch black."];

textBox.text = [textBox.text stringByAppendingString:@"\rYou hear someone in the dark."];

结果:     它漆黑一片。     你听到有人在黑暗中。

通缉结果:     你在黑暗中听到有人。     它的漆黑。

请原谅我,如果我看起来不聪明,我是iOS的新手。谢谢你的帮助。

1 个答案:

答案 0 :(得分:0)

试试这个:

 textBox.text = @"\nIts pitch black.";
 textbox.text = [NSString stringWithFormat:@"\rYou hear someone in the dark. %@", textbox.text];

希望它有所帮助。