码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 回收键盘

时间:2015-07-24 10:41:11      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

先要遵循协议  设置代理

 

    self.jiagetextfield.delegate=self;
    self.mingchengtextfield.delegate=self;

 

//释放第一响应者
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
    [self.mingchengtextfield resignFirstResponder];
    [self.jiagetextfield resignFirstResponder];
 
}



//bool 释放第一响应者
-(BOOL)textFieldShouldReturn:(UITextField *)textField{
    [textField resignFirstResponder];
    return YES;
}

iOS 回收键盘

标签:

原文地址:http://www.cnblogs.com/-ios/p/4672595.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!