IOS text, keyboard, and button exercises

Source: Internet
Author: User

1. Fast texture

Ii. knowledge points

1. Text

2. keyboard

1> automatic hiding. Method 1: did end on exit event. Add the hidekeyboard method and call resignfirstresponder to give up the input object's right to obtain the input;

Method 2: Touch the background to hide the keyboard.

2> keyboard attribute, default, Number pad, email address, etc.

3. Button

1> Add a background image to the button and set it when loading the view,

-(Void) viewdidload {

// Set the button template when loading the view
Uiimage * normalimage = [[uiimage imagenamed: @ "whitebutton.png"] stretchableimagewithleftcapwidth: 12.0 topcapheight: 0.0];
Uiimage * pressedimage = [[uiimage imagenamed: @ "bluebutton.png"] stretchableimagewithleftcapwidth: 12.0 topcapheight: 0.0];
[Self. thebutton setbackgroundimage: normalimage forstate: uicontrolstatenormal];

[Super viewdidload];

[Self. thebutton setbackgroundimage: pressedimage forstate: uicontrolstatehighlighted];

}

2> createstory Method

Self. thestory. Text = [self. thetemplate. Text stringbyreplacingoccurrencesofstring: @ "<place>" withstring: Self. theplace. Text];
Self. thestory. Text = [self. thestory. Text stringbyreplacingoccurrencesofstring: @ "<verb>" withstring: Self. theverb. Text];
Self. thestory. Text = [self. thestory. Text stringbyreplacingoccurrencesofstring: @ "<number>" withstring: Self. thenumber. Text];

 

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.