做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哦