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

IOS成长之路-去掉屏幕键盘的方法

时间:2014-08-12 13:24:04      阅读:267      评论:0      收藏:0      [点我收藏+]

标签:os   io   ar   art   res   type   ios   ui   

  1. //定义两个文本框  
  2. UITextField *textName;  
  3. UITextField *textSummary;  
  4.   
  5. //点击return 按钮 去掉  
  6. -(BOOL)textFieldShouldReturn:(UITextField *)textField  
  7. {  
  8.     [textField resignFirstResponder];  
  9.     return YES;  
  10. }  
  11. //点击屏幕空白处去掉键盘  
  12. - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event  
  13. {  
  14.     [self.textName resignFirstResponder];  
  15.     [self.textSummary resignFirstResponder];  

IOS成长之路-去掉屏幕键盘的方法,布布扣,bubuko.com

IOS成长之路-去掉屏幕键盘的方法

标签:os   io   ar   art   res   type   ios   ui   

原文地址:http://www.cnblogs.com/wlcc/p/3906880.html

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