0

我的应用中有两个UITextField,一个是价格,另一个是产品标签。

我已经在 .m中定义了 UITextField@property@synthesize

(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {

我正在使用这种方法来限制价格字段的条目,但它似乎影响了这两个字段。如何将其限制在一个领域?

4

1 回答 1

3

当任何 UITextField 将此实例设置为 Interface Builder 中的委托或使用代码时,将调用该方法。您可以使用以下内容检查哪个字段调用它:

-(BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
{
    if(textField == yourSynthesizedPropertyForPriceField) {
        //DO SOMETHING
    }
    return YES;
}
于 2013-04-25T18:43:48.163 回答