Чтобы изменить текст 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";
}