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

  • 相关阅读:
    ddd
    对Map按key和value分别排序
    两端通信
    WinDBG调试.NET程序示例
    FAQ:仓储实现为什么在基础设施层?
    Please Send Me a Card
    Web API 入门指南
    Node.js
    聊天工具mychat
    C语言面试问答5
  • 原文地址:https://www.cnblogs.com/tony0571/p/5612098.html
Copyright © 2011-2022 走看看