每当按下不同的按钮时,如何更改UITextView的源文本? 感谢。
答案 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,你就完成了。