gpt4 book ai didi

ios - UITextview 的 textFieldShouldReturn 方法

转载 作者:可可西里 更新时间:2023-11-01 05:53:38 26 4
gpt4 key购买 nike

需要向用户显示多行文本字段以供评论输入,我使用的是 UITextView 而不是 UITextField。我想在我的 UITextView 上使用 textFieldShouldReturn 将数据发送到服务器。我该怎么做?根据我目前的阅读,该方法仅适用于 UITextField。那么 UITextView 的等价物是什么?

最佳答案

通过将 UITextViewDelegate 添加到您的 viewControllerHeader

@interface ViewController : UIViewController<UITextViewDelegate>

这将允许您访问 UITextViewDelegate 方法,其中有几个方法应该让您知道用户何时按下回车键或让您知道他们何时完成编辑,例如

 - (void)textViewDidEndEditing:(UITextView *)textView{

//From here you can action your methods to send the data to your server as required etc.

}

还有这个方法

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text{

//Which you can use to listen for the @"\" return action if you prefer.

}

希望对你有帮助

关于ios - UITextview 的 textFieldShouldReturn 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25473418/

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