嗨,我遇到了键盘隐藏的 UITextField
问题UIScrollView
。
为此,我使用了苹果文档中的一些代码。
在 ViewDidLoad
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWasShown:)
name:UIKeyboardDidShowNotification object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(keyboardWillBeHidden:)
name:UIKeyboardWillHideNotification object:nil];
和
- (void)keyboardWasShown:(NSNotification*)aNotification
{
int rowNumber=(selectetTxtfld.tag-1)/7;
if (rowNumber>2) {
NSDictionary* info = [aNotification userInfo];
CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
CGRect bkgndRect = selectetTxtfld.superview.frame;
bkgndRect.size.height += kbSize.height;
[selectetTxtfld.superview setFrame:bkgndRect];
[scrlView setContentOffset:CGPointMake(0.0, selectetTxtfld.frame.origin.y-200) animated:YES];
}
}
和
- (void)keyboardWillBeHidden:(NSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
scrlView.contentInset = contentInsets;
scrlView.scrollIndicatorInsets = contentInsets;
scrlView.contentOffset=CGPointZero;
}
现在它工作正常。但我在代码行中听到了
[scrlView setContentOffset:CGPointMake(0.0, selectetTxtfld.frame.origin.y-200) animated:YES];
我使用的键盘高度为 200。如果我这样使用,苹果将拒绝该应用程序。这是对还是不对。
我也试过这段代码。但不显示 scrllview 的文本字段和内容
[scrlView setContentOffset:CGPointMake(0.0, selectetTxtfld.frame.origin.y-kbSize.height) animated:YES];
在我的应用程序中,我正在使用方向
- (NSUInteger)supportedInterfaceOrientations
{
return UIInterfaceOrientationMaskLandscapeRight;
}
所以请帮我如何使用键盘高度。