将文本添加到已填充的 UITextView



非常快速,简单的问题。如何在已填充 UITextView 时向其添加文本。

例如,但不起作用:_textView.text=+@";

谢谢二苯醚

_textView.text = [_textView.text stringByAppendingString:@""]
_textView.text = [_textView.text stringByAppendingString:@"Additional Text"];
 _textView.text = [NSString stringWithFormat:@"%@%@",_textView.text,@"text you want to append"];

使用上面,您可以在您想要前缀,后缀..

最新更新