TextView word count when inputting Chinese and highlighting English input method

Source: Internet
Author: User

Counting words

1, First register monitoring

[[Nsnotificationcenter Defaultcenter] addobserver:self selector: @selector (textvieweditchanged:) name:@ " Uitextviewtextdidchangenotification "Object:_textview";

  

2. Implement Monitoring method

-(void) textvieweditchanged: (nsnotification *) obj{Uitextview *textfield = (Uitextview *) Obj.object;        NSLog (@ "========%@", Textfield.text);    NSString *tobestring = Textfield.text; NSString *lang = [[Uitextinputmode currentinputmode] primarylanguage]; Keyboard input mode if ([Lang isequaltostring:@ "Zh-hans"]) {//Simplified Chinese input, including simplified pinyin, fitness wubi, simplified handwriting uitextrange *selectedrange = [text        Field Markedtextrange];        Get the highlighted part uitextposition *position = [TextField positionFromPosition:selectedRange.start offset:0]; No highlighted words, word count and limit if (!position) {if (Tobestring.length >) {textField) for typed text                                . Text = [tobestring substringtoindex:10]; [[[Uialertview alloc] initwithtitle:@ "DSFSA" message:@ "msg" Delegate:self cancelbuttontitle:nil otherbuttontitles:@ "                                Sure ", nil) show];            [Self.textview Resignfirstresponder];        }}//With a highlighted string, the text is temporarily not counted and restrictedelse{}}//In addition to the Chinese input method directly to its statistical restrictions, regardless of other languages else{if (Tobestring.length > 10) {                        Textfield.text = [tobestring substringtoindex:10]; [[[Uialertview alloc] initwithtitle:@ "DSFSA" message:@ "msg" Delegate:self cancelbuttontitle:nil otherbuttontitles:@ "        Sure ", nil) show]; }    }    }

  

3, the final cancellation of the supervisor listener

-(void) dealloc{    [[Nsnotificationcenter Defaultcenter] removeobserver:self name:@ " Uitextviewtextdidchangenotification "Object:_textview";}

  

TextView word count when inputting Chinese and highlighting English input method

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.