开发者

How do you keep the keyboard visible after you click the Send key

开发者 https://www.devze.com 2023-04-04 18:31 出处:网络
In my iPhone APP I have a view with a textfield and a button (to remove the view). My main goal is to have the keyboard always visible.

In my iPhone APP I have a view with a textfield and a button (to remove the view).

My main goal is to have the keyboard always visible.

I made a "Send" button visible on the keyboard and am able to capture when the send button is pressed.

Hoever, when you press the send button the keyboard is removed. What I would like is for the keyboard to remain visible and the text from the textfield to be cleared and be textfield to have focus ready for some more typing.

Adding:

[textChat becomeFirstResponder]; 

in the Did En开发者_开发问答d On Exit event does not work. I am not sure if I should be using one of the other events.

There are a ton of samples and tutorials on how to remove the keyboard, not one on how to keep it.


The keyboard is removed when it stops being the first responder. There is a delegate method you can implement, textFieldShouldEndEditing:, which is called when the text field is asked to resign from being first responder. You could implement this and have it return NO after you do whatever you want to do with the data in the text field (send it somewhere), clear the field, etc.

0

精彩评论

暂无评论...
验证码 换一张
取 消