0

わかりました、txtCountry であるこの 1 つのテキスト フィールドを編集して、特定の文字を受け入れないようにしようとしていますが、txt の国が正しく設定されていないため、編集できません。誰かが私のためにこれを修正してもらえますか. 細かいミスをしているのかもしれません。

   - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string{
if ([textField isEqual: txtCountry]) {

NSCharacterSet *cs = [[NSCharacterSet characterSetWithCharactersInString:LEAGELNUM] invertedSet];
NSString *filtered = [[string componentsSeparatedByCharactersInSet:cs]     componentsJoinedByString:@""];
BOOL basicTest = [string isEqualToString:filtered];
return basicTest;
}

}

4

1 に答える 1

0

テキスト フィールドの名前をメソッドに挿入する必要はありません。代わりにこれを行います:

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
    if ([textField isEqual: txtCountry]) {
        //return YES or NO here depending on your criteria
    }
}
于 2012-11-20T21:40:36.167 に答える