Implement placeholder and UITextView of uitextview

Source: Internet
Author: User

Implement placeholder and UITextView of uitextview

We know that during iOS development, the UITextField control has a placeholder attribute. The usage of UITextField is similar to that of UITextView. There are two differences: 1. UITextField single row input, while UITextView can be multiple rows input. 2. UITextField has the placeholder attribute, but UITextView does not. As for the proxy methods of the two, the principle is basically the same, but the method name is slightly different.

How to add a placeholder function for UITextView is actually a simple method, which can be implemented in three steps:

1. assign a value to the text attribute when creating a textView.

That is, textView. text = @ "what you want to say ";

2. perform the following operations in the edit proxy method:

 

-(Void) textViewDidBeginEditing :( UITextView *) textView {

If ([textView. text isEqualToString: @ "what you want to say"]) {

TextView. text = @"";

}

}

3. Complete the following operations in the end edit proxy method:

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

If (textView. text. length <1 ){

TextView. text = @ "what you want to say ";

}

}

 

After three simple steps above, you can implement the placeholder function. Of course, you can also customize a UITextView to beautify it, such as adding the placeholder text color and other attributes.

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.