OC語言中,NSString類型的字符串,視英文字母和漢字都爲一個長度(string.length把一個漢字也當作一個長度),而實際上,一個英文字母只佔用1個字節,一個漢字佔用2個字節。web
有時又有需求,須要限定字節數目,而不是內容個數,就須要經過一些方法獲取到字符串的字節數。好比,限定10個字節,則最多能夠輸入10個英文字母,或者5個漢字。函數
監聽textField的長度變化,就須要設置textField的代理。spa
可是有個bug,監聽內容變化的代理方法代理
- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
在點擊鍵盤輸入是正常的,但若是不點擊鍵盤按鍵,拿漢字輸入舉例,輸入一個字後,鍵盤上面會出現與該字多是詞語的字,點上面出現的字來輸入,就不會觸發上面的代理方法。
code
因此這個代理方法不能用,咱們須要經過註冊textField的通知來監聽。server
//註冊通知,textfield內容改變調用 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldDidChange:) name:UITextFieldTextDidChangeNotification object:self.testTextField];
實現通知方法字符串
- (void)textFieldDidChange:(NSNotification *)note{ UITextField *textField = note.object; //獲取文本框內容的字節數 int bytes = [self stringConvertToInt:self.testTextField.text]; //設置不能超過32個字節,由於不能有半個漢字,因此以字符串長度爲單位。 if (bytes > 16) { //超出字節數,仍是原來的內容 self.testTextField.text = self.lastTextContent; } else { self.lastTextContent = self.testTextField.text; } } //獲得字節數函數 - (int)stringConvertToInt:(NSString*)strtemp { int strlength = 0; char* p = (char*)[strtemp cStringUsingEncoding:NSUnicodeStringEncoding]; for (int i=0 ; i<[strtemp lengthOfBytesUsingEncoding:NSUnicodeStringEncoding] ;i++) { if (*p) { p++; strlength++; } else { p++; } } return (strlength+1)/2; }
若是textField一開始就有內容,就要獲取到,用代理方法string
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField { self.lastTextContent = textField.text; return YES; }