UITextView更改源文本

时间:2011-12-07 15:23:26

标签: iphone ios textview uitextview

每当按下不同的按钮时,如何更改UITextView的源文本? 感谢。

2 个答案:

答案 0 :(得分:3)

要更改UITextView的文字,请设置其text属性:

textView.text = @"your text here";

你可以在按钮的选择器中调用它,如下所示:

UIButton *yourButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[yourButton setTitle:@"click to change textview's text" forState:UIControlStateNormal];
[yourButton addTarget:self action:@selector(buttonClicked:) forControlEvents:UIControlEventTouchUpInside];

...

- (void)buttonClicked:(id)sender {

    textView.text = @"your text";
}

答案 1 :(得分:0)

只需创建不同的方法来更改UITextView值。在IB中以正确的方式将它连接到textView,你就完成了。