2014-02-19 77 views

回答

1
_textView.text = [_textView.text stringByAppendingString:@""] 
+0

非常感謝超快速的回答! –

1
_textView.text = [_textView.text stringByAppendingString:@"Additional Text"]; 
+0

感謝這麼多超快的答案! ! –

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

上面你可以添加任何你想要的前綴文字,後綴..

+0

非常感謝超快速的回答! –