IOS cainiao learning-UITextField and UITextView implement word limit

Source: Internet
Author: User

During iOS development, we need to limit the number of words, that is, the function that cannot be entered after several words are entered. Taking UITextFiled as an example, we only need to take the following steps to implement this function.

1. Declare the proxy in @ interface

[Plain]
@ Interface MyViewController: UIViewController <UITextFieldDelegate>

2. Set the delegate of UITextField, which can be implemented in the viewDidLoad method or in the nib file (or storyboard.
[Plain]
TextField. delegate = self;

3. Implement proxy methods.
[Plain]
-(BOOL) textField :( UITextField *) textField shouldChangeCharactersInRange :( nsange) range replacementString :( NSString *) string {
NSString * temp = [textField. text stringByReplacingCharactersInRange: range withString: string];
If (temp. length> 15 ){
TextField. text = [temp substringToIndex: 15];
Return NO;
}
Return YES;
}

For UITextView, you only need to implement this code in the textViewDidChange: proxy method of UITextView.

 

 

From soloterry's column

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.