gpt4 book ai didi

iphone - UITextView返回KeyType

转载 作者:行者123 更新时间:2023-12-03 19:52:34 25 4
gpt4 key购买 nike

我正在尝试将 UITextView(不是 UITextField)上的“Return”键更改为“Done”键。我有以下代码,它不会更新按钮并使按钮保持不变。该按钮以“返回”键开始,如果他们点击“返回”一次,我希望它更改为“完成”键。

-(BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text {
// this is only run when they hit return once
textView.returnKeyType = UIReturnKeyDone;
[textView reloadInputViews];
}

最佳答案

这不仅仅是一个干净的解决方案,而且有点黑客攻击。您可以尝试隐藏和显示键盘(即resignFirstResponder,更改返回键样式并becomeFirstResponder)。

但是它会产生一个奇怪的动画。为了避免这种故障,您应该能够阻止屏幕刷新。

顺便说一句,在这个方法的最后,你返回YES还是NO

关于iphone - UITextView返回KeyType,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16407526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com