iphone獲取每次輸入的textfiled裡的文字的委託方法。

paul_wuhaha發表於2011-12-13
- (BOOL) textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    NSLog(@"when the user call the method the string is %@",string);
    return YES;
}

string 就是每次輸入的文字。

要判斷輸入了多少字元,可以判斷range的屬性。

相關文章