TextField Limit words (compatible with Chinese, copy, delete) IOS

Source: Internet
Author: User

This method has been searched several times, the personal test can be used for Chinese input detection, as well as copy, delete and so on limit the number of words have no effect.


[textname addTarget: self action:@selector (textfielddidchange:) forControlEvents:uicontroleventeditingchanged];


-(void) Textfielddidchange: (uitextfield *) TextField

{

if (TextField = = self. clockname) {

nsstring *tobestring = TextField. text;

nsstring *lang = [[uitextinputmode currentinputmode] Primary Language]; // keyboard Input mode

if ([lang isequaltostring:@ "Zh-hans"]) { // Simplified Chinese input, including simplified pinyin, fitness wubi, simplified handwriting

uitextrange *selectedrange = [TextField markedtextrange];

// get highlighted parts

uitextposition *position = [TextField positionfromposition: Selectedrange. Start offset:0];

// No highlighted words, word count and limit for typed text

if (!position) {

if (tobestring. length > clockname_max_length) {

TextField. text = [tobestring substringtoindex:clockname_max_length];

}

}

// with a highlighted string, the text is temporarily not counted and restricted

Else {

}

}

// Chinese Input method directly to its statistical restrictions, regardless of other languages

Else {

if (tobestring. length > clockname_max_length) {

TextField. text = [tobestring substringtoindex:clockname_max_length];

}

}

}


}


This article is from the "iOS Yo Bug" blog, be sure to keep this source http://ios2013yoyo.blog.51cto.com/6260005/1583271

TextField Limit words (compatible with Chinese, copy, delete) IOS

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.