iOS应用中的自定义数字键盘问题

时间:2013-11-29 20:17:26

标签: ios objective-c uiview uitextfield first-responder

我有一个带有自定义数字键盘的应用。我需要一些自定义数字键盘,但不是首选项视图中的所有文本字段。我已经编写了这种方法来为某些文本字段设置数字键盘:

-(void)setNumberPadFor:(UITextField*)textField andNibName:(NSString *)nibNamed{

    textField.inputView = [[[NSBundle mainBundle] loadNibNamed:nibNamed
                                                         owner:self
                                                       options:nil] lastObject];

    UIBarButtonItem *btnDone = [[UIBarButtonItem alloc] initWithTitle:@"Done"
                                                                style:UIBarButtonItemStyleDone
                                                               target:textField
                                                               action:@selector(resignFirstResponder)];

    UIToolbar *tips = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, 320, 44)];
    tips.barStyle = UIBarStyleBlackOpaque;
    [tips setBackgroundColor:[UIColor blueColor]];
    [tips setTintColor:[UIColor whiteColor]];
    UIBarButtonItem *spacer = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace
                                                                           target:nil
                                                                           action:nil];
    [tips sizeToFit];
    tips.items = [NSArray arrayWithObjects:spacer, btnDone, nil];
    textField.inputAccessoryView = tips;
}

我调用setup方法如下(在ViewController的viewDidLoad中):

[self setNumberPadFor:txtMinFeet andNibName:@"PosNegNumberPad"];
[self setNumberPadFor:txtMaxFeet andNibName:@"PosNegNumberPad"];

因此,在我的按钮单击事件中,如何访问启动数字键盘的文本字段?

-(IBAction)btnNum1:(id)sender{
    [[UIDevice currentDevice] playInputClick];
    // update text field
}
-(IBAction)btnNum2:(id)sender{
    [[UIDevice currentDevice] playInputClick];
    // update text field
}

最终我将有两个自定义数字键盘来满足要求,但现在只有一个(因此当前一个nib作为参数传递)。

我的按钮操作已设置并正常工作,也就是说,我可以在其中设置断点并验证应用是否正在响应事件。

我不清楚的是如何识别哪个文本字段启动了数字键盘,以便我可以相应地更新它。

显然我要留下一些东西。有什么建议?谢谢!

1 个答案:

答案 0 :(得分:1)

一种方法是使用ivar,每次获得委托方法textFieldDidBeginEditing时:设置ivar。稍后,您查询ivar以获取当前文本字段。

另一种方法是找到第一个响应者。这意味着遍历主视图的子视图以找到它。这很常见,你可以在这里找到代码来做到这一点。另一种方式是最容易做到的。