[Rookie growth Kee]ios develop self-study note 07-uitextfield Auto-Hide keyboard

Source: Internet
Author: User

When you click the Uitextfield input box, the soft keyboard is not automatically hidden after the end of the input, and two ways to automatically hide the soft keyboard are summarized:

The first: by responding to the Do end on Exit event of the Uitextfield object, when clicking the "Done" button on the default soft keyboard or the "Return" button triggers the Do end on Exit event, the code implementation responds to the Do end on Exit event to implement auto-Hide keyboard

-(Ibaction) Textfielddidendonexit: (ID) sender {    [TextField resignfirstresponder];}

The second way: The soft keyboard is automatically hidden by touching the background view of the Uitextfield object.

It is important to note that the class of the background view is called the Uicontrol class by UIView classes, because this is the only way to trigger the touch down event when the user clicks the UIView and then define the touch by encoding Down response to achieve the purpose of hiding the soft keyboard.

-(Ibaction) Viewtouchdown: (ID) sender {    [TextField resignfirstresponder];}

[Rookie growth Kee]ios develop self-study note 07-uitextfield Auto-Hide keyboard

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.