当键盘弹起的时候,屏幕适配键盘高度的方法

8 篇文章 0 订阅

当我们使用TextFiled或者TextView的时候,经常会因为键盘弹起而挡住编辑区域,而中文键盘因为拼音的缘故会两次调用keyboardWillShow的监听,现在我贴出一个我自己理解的方式

  1. <span style="font-size:18px;">  
  2. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil  
  3. {  
  4.     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];  
  5.     if (self) {  
  6.         // Custom initialization  
  7.         //加入监听  
  8.         [[NSNotificationCenter defaultCenter] addObserver:self  
  9.                                                  selector:@selector(keyboardWillShow:)  
  10.                                                      name:UIKeyboardWillShowNotification  
  11.                                                    object:nil];  
  12.           
  13.         [[NSNotificationCenter defaultCenter] addObserver:self  
  14.                                                  selector:@selector(keyboardWillHide:)  
  15.                                                      name:UIKeyboardWillHideNotification  
  16.                                                    object:nil];  
  17.   
  18.           
  19.     }  
  20.     return self;  
  21. }</span>  

  1. <span style="font-size:18px;">  
  2. @property (nonatomic,assign)CGRect              tableViewRect;//设置一个rect来保存你想要升高的view的rect</span>  

  1. <span style="font-size:18px;">- (void)keyboardWillShow:(NSNotification *)notif {  
  2.     self.keyBoardRect = [[notif.userInfo objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];  
  3.           
  4.         [UIView animateWithDuration:0.5 animations:^{  
  5.             CGRect tbRect = self.tableViewRect;  
  6.             tbRect.origin.y -=self.keyBoardRect.size.height;  
  7.             self.tableView.frame = tbRect;  
  8.         } completion:^(BOOL finish){  
  9.               
  10.         }];  
  11.       
  12. }  
  13.   
  14. - (void)keyboardWillHide:(NSNotification *)notif {  
  15.       
  16.         [UIView animateWithDuration:0.5 animations:^{  
  17.               
  18.             self.tableView.frame = self.tableViewRect;  
  19.         } completion:^(BOOL finish){  
  20.               
  21.         }];  
  22.       
  23. }</span>  


用一个临时变量来做一个中转,这样就省去了很多复杂的逻辑,这样就算是中文2次弹起,也不会受任何影响
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值