这可能不是一个容易回答的问题......
我在屏幕上有 8 个文本字段,它们位于 ScrollView 中。当我选择第一个字段时,键盘出现并且 ScrollView 缩小。然后我可以上下滚动。
当我选择另一个文本字段时,我无法再滚动。
我已经使用 textFieldDidBeginEditing 检查了 scrollView 的高度,它肯定会长回来。
我还注册了所有 4 个键盘通知,但在移动到新文本字段期间没有一个被触发。
任何指针将不胜感激
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self
selectorselector(keyboardWillShow
name:UIKeyboardWillShowNotification
object:self.view.window];
[[NSNotificationCenter defaultCenter] addObserver:self
selectorselector(keyboardWillHide
name:UIKeyboardWillHideNotification
object:self.view.window];
keyboardIsShown = NO;
//Additional Code
}
- (void)viewDidUnload {
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillHideNotification
object:nil];
}
- (void)keyboardWillHideNSNotification *)n
{
NSDictionary* userInfo = [n userInfo];
CGSize keyboardSize = [[userInfo objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
CGRect viewFrame = self.scrollView.frame;
viewFrame.size.height += (keyboardSize.height - self.toolBar.frame.size.height);
[self.scrollView setFrame:viewFrame];
keyboardIsShown = NO;
}
- (void)keyboardWillShowNSNotification *)n
{
if (keyboardIsShown) {
return;
}
NSDictionary* userInfo = [n userInfo];
CGSize keyboardSize = [[userInfo objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
CGRect viewFrame = self.scrollView.frame;
viewFrame.size.height -= (keyboardSize.height - self.toolBar.frame.size.height);
scrollViewHeight = viewFrame.size.height;
[self.scrollView setFrame:viewFrame];
keyboardIsShown = YES;
}
用于在文本字段之间移动:
-(void)textFieldDidBeginEditingUITextField *)textField
{
[[self saveButton] setEnabled:YES];
}
-(BOOL)textFieldShouldReturnUITextField *)textField
{
if (textField == self.label1) {
[self.label2 becomeFirstResponder];
} else if (textField == self.label2) {
[self.label3 becomeFirstResponder];
} else if (textField == self.label3) {
[self.label4 becomeFirstResponder];
} else if (textField == self.label4) {
[self.label5 becomeFirstResponder];
} else if (textField == self.label5) {
[self.label6 becomeFirstResponder];
} else if (textField == self.label6) {
[self.label7 becomeFirstResponder];
} else if (textField == self.label7) {
[self.label8 becomeFirstResponder];
} else if (textField == self.label8) {
[textField resignFirstResponder];
}
return YES;
}
Best Answer-推荐答案 strong>
经过大量挖掘,我找到了以下代码,我现在已经对其进行了调整和测试:
- (void)viewDidLoad
{
[super viewDidLoad];
[[NSNotificationCenter defaultCenter] addObserver:self
selectorselector(keyboardWasShown
name:UIKeyboardDidShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selectorselector(keyboardWillBeHidden
name:UIKeyboardWillHideNotification
object:nil];
keyboardIsShown = NO;
//Additional code
}
- (void)viewDidUnload {
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardDidShowNotification
object:nil];
[[NSNotificationCenter defaultCenter] removeObserver:self
name:UIKeyboardWillHideNotification
object:nil];
}
- (void)keyboardWasShownNSNotification*)aNotification
{
NSDictionary* info = [aNotification userInfo];
CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;
UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, (kbSize.height - self.toolBar.frame.size.height), 0.0);
self.scrollView.contentInset = contentInsets;
self.scrollView.scrollIndicatorInsets = contentInsets;
// If active text field is hidden by keyboard, scroll it so it's visible
// Your application might not need or want this behavior.
CGRect aRect = self.view.frame;
aRect.size.height -= (kbSize.height + (self.toolBar.frame.size.height*2));
if (!CGRectContainsPoint(aRect, activeField.frame.origin) ) {
CGPoint scrollPoint = CGPointMake(0.0, activeField.frame.origin.y-kbSize.height);
[self.scrollView setContentOffset:scrollPoint animated:YES];
}
}
// Called when the UIKeyboardWillHideNotification is sent
- (void)keyboardWillBeHiddenNSNotification*)aNotification
{
UIEdgeInsets contentInsets = UIEdgeInsetsZero;
self.scrollView.contentInset = contentInsets;
self.scrollView.scrollIndicatorInsets = contentInsets;
}
-(void)textFieldDidBeginEditingUITextField *)textField
{
activeField = textField;
}
- (void)textFieldDidEndEditingUITextField *)textField
{
activeField = nil;
}
关于ios - 移动到另一个文本字段时,为什么 UIScrollView 会重新调整大小 - iOS iPhone,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/16354178/
|