标签: ios uitextview
我在按下UITextView后尝试更改UIButton,例如我的文字视图显示“香蕉”,按下按钮时,相同的文字视图必须更改为“是美味“。
UITextView
UIButton
答案 0 :(得分:1)
您需要为UITextField(在此示例中将其称为textField)和对UIButton的Action设置一个插座。
你的行为看起来像这样:
- (IBAction)buttonPressed:(id)sender { [self.textField setText:@"are delicious"]; }