`
xindrace
  • 浏览: 93762 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

IOS隐藏键盘

    博客分类:
  • IOS
阅读更多

 

//UITextField的Did End On Exit 调用下面事件
- (void)KeyExit:(id)sender
{
    NSLog(@"关闭键盘提交!");
    [sender resignFirstResponder];
}

 

 

 

//点击屏幕调用下面事件
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    NSLog(@"隐藏键盘!");
    UITouch *touch=[[event allTouches] anyObject];
    if (touch.tapCount >=1) {
        [EVresumePassword resignFirstResponder];
        [EVnewPassword resignFirstResponder];
        [EVoldPassword resignFirstResponder];
    }
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics