How IOS shuts down the keyboard _ios

Source: Internet
Author: User
Tags touch

First enter finish and press done on the keyboard to turn off the keyboard

First in Interface Builder select Textfields, and then in the text Field attributes found text Input Traits, select Return key for done. Ok

Defining methods

Copy Code code as follows:

-(Ibaction) textfielddoneediting: (ID) sender; Press the done key to close the keyboard

Implementation methods

Copy Code code as follows:

Turn off the keyboard after the done key is pressed
-(Ibaction) textfielddoneediting: (ID) sender
{
[Sender Resignfirstresponder];
}

Then find the event did end on Exit, associate with Textfielddoneediting, OK.
If it is a numeric keypad, do not have the done key to do it, we touch the background to close the keyboard

Defining methods

Copy Code code as follows:

-(Ibaction) Backgroundtap: (ID) sender; Turn off the keyboard by touching the background

Implementation methods

Copy Code code as follows:

Turn off the keyboard by touching the background
-(Ibaction) Backgroundtap: (ID) sender
{
[Namefiled Resignfirstresponder];
[Numberfield Resignfirstresponder];
}

Then select the context of the touch down event, associated Backgroundtap,ok
One thing to note about this approach is to change the UIView to Uicontrol.

Related Article

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.