给键盘添加一个工具条
Posted ID_超电磁炮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了给键盘添加一个工具条相关的知识,希望对你有一定的参考价值。
开发中经常遇到要给键盘添加一个工具条,工具条上有按钮,点击后可以隐藏键盘的情况。比如下面:需要弹出纯数字键盘,这个时候就需要通过工具条来隐藏键盘了。
场景:点击一个cell中的textfield弹出数字键盘,上面加上工具条
步骤1:在cellforrow中创建工具条。
步骤2:把textfield的inputAccessoryView 属性 = 你创建的工具条
步骤3:把textfield的keyboradType 属性 = UIKeyboardTypeNumberPad
步骤4:实现工具条中按钮的点击方法,点击确定就表示结束编辑,键盘就自动隐藏啦:
-(void) cancelAction {
[self.view endEditing:YES];
}
@property (nonatomic,strong) UIToolbar *toolbar;
self.toolbar = [[UIToolbar alloc] initWithFrame:CGRectMake(0, 0, self.view.frame.size.width, 44.0f)]; self.toolbar.backgroundColor = [UIColor lightGrayColor]; UIBarButtonItem *flexSpace = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:nil]; UIBarButtonItem* rightItem = [[UIBarButtonItem alloc] initWithTitle:@"确定" style:UIBarButtonItemStyleDone target:self action:@selector(cancelAction)]; [ self.toolbar setItems:@[flexSpace,rightItem]]; cell.mileageTextField.inputAccessoryView = self.toolbar;
以上是关于给键盘添加一个工具条的主要内容,如果未能解决你的问题,请参考以下文章