[color=#FF0000]UITextView.text=@" ";
上面的方法只能设置一次值呀,之前的就被清空了。
有没有追加文字的方法呢?[/color]
UITextView.text=@" ";
上面的方法只能设置一次值呀,之前的就被清空了。
有没有追加文字的方法呢?
NSString * tex = UITextView.text;
tex = [ tex stringByAppendingString: @"aaaa" ];
or
tex = [ tex stringByAppendingFormat: @" %d", i ];
UITextView.text = tex;
UITextView *textView = [[UITextView alloc] init];
NSString *str = textView.text;
textView.text = [str stringByAppendingString:@"sssssss"];