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

  • 相关阅读:
    剑指Offer
    剑指Offer
    剑指Offer
    选书
    马的遍历
    从事效应
    魔性的素数环1~20 自带解释~
    [POJ1236]Network of Schools(并查集+floyd,伪强连通分量)
    [HDOJ3974]Assign the task(建树胡搞)
    [HDOJ4027]Can you answer these queries?(线段树,特殊成段更新,成段查询)
  • 原文地址:https://www.cnblogs.com/tony0571/p/5612098.html
Copyright © 2011-2022 走看看