zoukankan      html  css  js  c++  java
  • 键盘输入完成按钮


    - (void)addKeyboardNSNotification {
       
        UIToolbar *topView = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, 320, 30)];
       
        //设置style
        [topView  setBarStyle:UIBarStyleBlack];
       
        //定义两个flexibleSpace的button,放在toolBar上,这样完成按钮就会在最右边
        UIBarButtonItem  *button1 =[[UIBarButtonItem  alloc]initWithBarButtonSystemItem:                                        UIBarButtonSystemItemFlexibleSpace target:self action:nil];
       
        UIBarButtonItem *button2 = [[UIBarButtonItem  alloc]initWithBarButtonSystemItem:                                        UIBarButtonSystemItemFlexibleSpace target:self action:nil];
       
        //定义完成按钮
        UIBarButtonItem  *doneButton = [[UIBarButtonItem alloc]initWithTitle:@"完成" style:UIBarButtonItemStyleDone target:self action:@selector(resignKeyboard)];
       
        //在toolBar上加上这些按钮
        NSArray  *buttonsArray = [NSArray arrayWithObjects:button1,button2,doneButton,nil];
       
        [topView setItems:buttonsArray];
       
        [self.user_field  setInputAccessoryView:topView];
        [self.psd_field setInputAccessoryView:topView];
       
    }


    //隐藏键盘
    -(void)resignKeyboard {
        [self.user_field resignFirstResponder];
        [self.psd_field resignFirstResponder];
    }

  • 相关阅读:
    C#Socket发16进制以及进制转换
    WPF跨线程操作UI界面控件
    DispatcherTimer和Timer的区别
    C#等比列放大缩小图片
    计算进项税
    AX 中通过SqlServer数据库刷数据
    AX中日期的常用方法
    从AX2012系统批量生成CSV格式数据
    装箱单过发票
    导入CSV文件乱码
  • 原文地址:https://www.cnblogs.com/tony0571/p/5612098.html
Copyright © 2011-2022 走看看