您的位置:首页 > 产品设计 > UI/UE

UIScrollview 键盘遮挡问题

2015-01-22 18:15 369 查看
#pragma mark - UIKeyboard Obscure Problem

- (void)handleKeyboardStuff {

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillShow:) name:UIKeyboardWillShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(keyboardWillHide:) name:UIKeyboardWillHideNotification object:nil];

UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapScrollView:)];

[_scrollView addGestureRecognizer:tap];
}

- (void)keyboardWillShow:(NSNotification *)notification {

[self adjustInsetForKeyboardShow:YES notification:notification];
}

- (void)keyboardWillHide:(NSNotification *)notification {

[self adjustInsetForKeyboardShow:NO notification:notification];
}

- (void) tapScrollView:(id)sender {

[_scrollView endEditing:YES];
}

- (void)adjustInsetForKeyboardShow:(BOOL)show notification:(NSNotification *)notification {

NSDictionary *userInfo = notification.userInfo;
CGRect keyboardFrame = ((NSValue *)userInfo[UIKeyboardFrameBeginUserInfoKey]).CGRectValue;
CGFloat adjustmentHeight = (CGRectGetHeight(keyboardFrame) + 20.0) * (show ? 1 : -1);

UIEdgeInsets scrollInsets = _scrollView.contentInset;
scrollInsets.bottom += adjustmentHeight;
_scrollView.contentInset = scrollInsets;

UIEdgeInsets indicatorInsets = _scrollView.scrollIndicatorInsets;
indicatorInsets.bottom += adjustmentHeight;
_scrollView.scrollIndicatorInsets = indicatorInsets;

}

- (void)dealloc {

[[NSNotificationCenter defaultCenter] removeObserver:self];
}


添加以上代码,最后在viewDidLoad方法里添加:

[self handleKeyboardStuff];
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: