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];
    }

  • 相关阅读:
    《ASP.NET MVC 5 高级编程(第5版)》
    《JavaScript基础教程》
    Linux命令行
    jQuery UI
    第一章-算法概述
    树的基本概念及算法
    3个列表标签 uloldl
    body 部分的标签
    head 里主要的标签:meta和link 标签
    html+server+页面访问
  • 原文地址:https://www.cnblogs.com/tony0571/p/5612098.html
Copyright © 2011-2022 走看看