我正在尝试将 UITextView(不是 UITextField)上的“返回”键更改为“完成”键。我有以下代码不会更新按钮并使按钮保持不变。该按钮以“返回”键开始,如果他们点击“返回”,一旦我希望它更改为“完成”键。
-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
// this is only run when they hit return once
textView.returnKeyType = UIReturnKeyDone;
[textView reloadInputViews];
}