ios輸入框被鍵盤擋住的解決辦法
做IOS開發時,難免會遇到輸入框被鍵盤遮掩的問題。上網上搜尋了很多相關的解決方案,看了很多,但是由衷的覺得太麻煩了。
有的解決方案是將視圖上的所有的東西都添加到一個滾動視圖對象( UIScrollView )中,然後滾動視圖實現輸入框不被軟鍵盤覆蓋,個人覺得此方案好是好,但是太過麻煩。
有的解決方案是通過一個通知 UIKeyboardDidShowNotification 去實現的,需要用到事件監聽,而且需要自己定義並實現“將要開始編輯”與“結束編輯”這兩個監聽事件中的方法。本人也覺得很麻煩。參考了很多方法,都不是太理想。自己研究了一下,既然軟鍵盤(Keyboard)出現與否是跟輸入框(UITextField)緊密關聯的。所以自己找到一個解決方案,沒有上述兩種方案那麼麻煩,只需實現代理UITextFieldDelegate中的三個方法即可。
實現方法:
1)將輸入框的代理設定為self
(在lb檔案中將輸入框的delegate設定為File’s Owner 。或者使用代碼textField.delegate = self;
2)將輸入框所對應的ViewController.h設定實現了UITextFieldDelegate協議
在ViewController.m檔案中實現UITextFieldDelegate的三個方法即可:
[cpp] view plaincopy
//開始編輯輸入框的時候,軟鍵盤出現,執行此事件
-(void)textFieldDidBeginEditing:(UITextField *)textField
{
CGRect frame = textField.frame;
int offset = frame.origin.y + 32 - (self.view.frame.size.height - 216.0);//鍵盤高度216
NSTimeInterval animationDuration = 0.30f; [UIView beginAnimations:@ResizeForKeyboard context:nil]; [UIView setAnimationDuration:animationDuration]; //將視圖的Y座標向上移動offset個單位,以使下面騰出地方用於軟鍵盤的顯示 if(offset > 0) self.view.frame = CGRectMake(0.0f, -offset, self.view.frame.size.width, self.view.frame.size.height); [UIView commitAnimations];
}
//當使用者按下return鍵或者按斷行符號鍵,keyboard消失
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
//輸入框編輯完成以後,將視圖恢複到原始狀態
-(void)textFieldDidEndEditing:(UITextField *)textField
{
self.view.frame =CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
}
[cpp] view plaincopy
//開始編輯輸入框的時候,軟鍵盤出現,執行此事件
-(void)textFieldDidBeginEditing:(UITextField *)textField
{
CGRect frame = textField.frame;
int offset = frame.origin.y + 32 - (self.view.frame.size.height - 216.0);//鍵盤高度216
NSTimeInterval animationDuration = 0.30f; [UIView beginAnimations:@ResizeForKeyboard context:nil]; [UIView setAnimationDuration:animationDuration]; //將視圖的Y座標向上移動offset個單位,以使下面騰出地方用於軟鍵盤的顯示 if(offset > 0) self.view.frame = CGRectMake(0.0f, -offset, self.view.frame.size.width, self.view.frame.size.height); [UIView commitAnimations];
}
//當使用者按下return鍵或者按斷行符號鍵,keyboard消失
-(BOOL)textFieldShouldReturn:(UITextField *)textField
{
[textField resignFirstResponder];
return YES;
}
//輸入框編輯完成以後,將視圖恢複到原始狀態
-(void)textFieldDidEndEditing:(UITextField *)textField
{
self.view.frame =CGRectMake(0, 0, self.view.frame.size.width, self.view.frame.size.height);
}
方法很簡單吧?請注意一定不要忘記設定輸入框的代理delegate哦