iOS为数字键盘增加完成按钮

Posted 初秋的天

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS为数字键盘增加完成按钮相关的知识,希望对你有一定的参考价值。

在输入价格的时候,要求弹出的键盘只能有数字和小数点。弹出的键盘没有完成键,想要退出键盘可以点击退出,但是为了更好的用户体验,在键盘上增加UIToolbar。

 

设置ToolBar:

- (UIToolbar *)addToolbar {

   UIToolbar *toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, CGRectGetWidth(self.view.frame), 36)];
    toolbar.tintColor = [UIColor blackColor];
    toolbar.backgroundColor = [UIColor lightGrayColor];
    UIBarButtonItem *prevItem = [[UIBarButtonItem alloc] initWithTitle:@"  <  " style:UIBarButtonItemStylePlain target:self action:@selector(prevTextField:)];
    UIBarButtonItem *nextItem = [[UIBarButtonItem alloc] initWithTitle:@"  >  " style:UIBarButtonItemStylePlain target:self action:@selector(nextTextField:)];
    UIBarButtonItem *flbSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
    UIBarButtonItem *doneItem = [[UIBarButtonItem alloc] initWithTitle:NSLocalizedString(@"完成",nil) style:UIBarButtonItemStylePlain target:self action:@selector(textFieldDone)];
    toolbar.items = @[prevItem,nextItem,flbSpace, doneItem];
    return toolbar;
}

为textField添加ToolBar:

_textField.inputAccessoryView = [self addToolbar];

实现效果图:

 

 

以上是关于iOS为数字键盘增加完成按钮的主要内容,如果未能解决你的问题,请参考以下文章

IOS数字键盘加完成按钮

iOS 键盘 - 大写“完成”按钮

在多个 UITextField 的数字键盘上显示完成按钮

在不添加完成键的情况下关闭数字键盘式键盘

React Native 数字键盘 returnKeyType 标签 iOS

完成按钮仅适用于数字键盘