1. 程式人生 > >iOS解決鍵盤遮擋輸入框問題

iOS解決鍵盤遮擋輸入框問題

導讀:UITextField(輸入框)獲取焦點後會彈出鍵盤,有時候鍵盤會遮擋住輸入框,影響使用者互動,所以需要在彈出鍵盤的時候將檢視上移至不會遮擋的位置。下面主要講述幾種常見解決方法。

一、彈出鍵盤時,將整個檢視上移:監聽鍵盤事件

//監聽鍵盤
//1、鍵盤彈出時
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector(keyboardWillShow) name:UIKeyboardWillShowNotification object:nil];
//2、鍵盤收回時
[[NSNotificationCenter defaultCenter]addObserver:self selector:@selector
(keyboardWillhide) name:UIKeyboardWillHideNotification object:nil]; /** 監聽鍵盤彈出,輸入框上移 */ -(void)keyboardWillShow{ NSDictionary *userInfo = note.userInfo; CGFloat duration = [userInfo[@"UIKeyboardAnimationDurationUserInfoKey"] doubleValue]; CGRect keyFrame = [userInfo[@"UIKeyboardFrameEndUserInfoKey"] CGRectValue];//獲取鍵盤高度
CGFloat moveY = keyFrame.origin.y - self.view.frame.size.height-64; [UIView animateWithDuration:duration animations:^{ self.view.transform = CGAffineTransformMakeTranslation(0, moveY); }]; } /** 監聽鍵盤彈收回,輸入框下移 */ -(void)keyboardWillhide { //設定view的frame,往下平移 }

如果你的UIViewController繼承UITableViewController,這樣系統會自動處理鍵盤遮擋的問題,如果不是,但又需要使用UITableview,該怎麼做呢?

二、如果UITextField放在UITableview上,就要知道每個輸入框所在的cell的位置,然後再做處理。

- (void)textFieldDidBeginEditing:(UITextField *)textField {

//獲取cell的位置
UITableViewCell *cell = (UITableViewCell *)[textField superview];
NSIndexPath *indexPath = [_publishTableView indexPathForCell:cell];
CGRect rectInTableView = [self.publishTableView rectForRowAtIndexPath:indexPath];
}
 CGFloat keyboardHeight = 216.0f;
    if (tableview.frame.size.height - keyboardHeight <= rectInTableView.origin.y + textField.frame.size.height+THfloat(36)) {
        CGFloat y = rectInTableView.origin.y + textField.frame.size.height+THfloat(36) - (self.publishTableView.frame.size.height - keyboardHeight-THfloat(44));

        [UIView beginAnimations:@"srcollView" context:nil];
        [UIView setAnimationCurve:UIViewAnimationCurveEaseInOut];
        [UIView setAnimationDuration:0.275f];
        tableview.frame = CGRectMake(0, -y, THScreenW, THScreenH-64);
        [UIView commitAnimations];
    }

三、三句程式碼實現該功能

UITableViewController *tvc = [[UITableViewController alloc]initWithStyle:UITableViewStylePlain];
tableView = tvc.tableView;
[self addChildViewController:tvc];