0

UITableView各セルに が含まれているを使用UITextFieldしており、Apple の公式の例を使用して、アクティブなフィールドが既に非表示になっている場合はキーボードの上に移動して、目標を実行したいと考えています。UITableViewしかし、スクロールが有効になっているのにフォームが動かない。これが私の関連するコードです。不足していると思われるものや間違っていると思われるものを指摘してください:

@interface ViewController (){
    UITextField *activeField;
}

- (void)viewDidLoad
{
//....
    objTableView.scrollEnabled=YES;

//....
}

#pragma mark - Keyboard notifications

// Call this method somewhere in your view controller setup code.
- (void)registerForKeyboardNotifications

{

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardWasShown:)

                                                 name:UIKeyboardDidShowNotification object:nil];

    [[NSNotificationCenter defaultCenter] addObserver:self

                                             selector:@selector(keyboardWillBeHidden:)

                                                 name:UIKeyboardWillHideNotification object:nil];

}
// Called when the UIKeyboardDidShowNotification is sent.

- (void)keyboardWasShown:(NSNotification*)aNotification

{

    NSDictionary* info = [aNotification userInfo];

    CGSize kbSize = [[info objectForKey:UIKeyboardFrameBeginUserInfoKey] CGRectValue].size;



    UIEdgeInsets contentInsets = UIEdgeInsetsMake(0.0, 0.0, kbSize.height, 0.0);

    objTableView.contentInset = contentInsets;

    objTableView.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;

    if (!CGRectContainsPoint(aRect, activeField.frame.origin) ) {

        CGPoint scrollPoint = CGPointMake(0.0, activeField.frame.origin.y-kbSize.height);

        [objTableView setContentOffset:scrollPoint animated:YES];

    }

}



// Called when the UIKeyboardWillHideNotification is sent

- (void)keyboardWillBeHidden:(NSNotification*)aNotification

{

    UIEdgeInsets contentInsets = UIEdgeInsetsZero;

    objTableView.contentInset = contentInsets;

    objTableView.scrollIndicatorInsets = contentInsets;

}
#pragma mark - UITextFieldDelegate protocol method

- (void)textFieldDidBeginEditing:(UITextField *)textField

{

    activeField = textField;

}
- (void)textFieldDidEndEditing:(UITextField *)textField

{

    activeField = nil;

}
4

1 に答える 1

0

このコードを試してください:

if (!CGRectContainsPoint(aRect, activeField.frame.origin) ) {
    CGRect rc = [activeField bounds];
    rc = [activeField convertRect:rc toView:objTableView];
    [objTableView scrollRectToVisible:rc animated:YES];
}
于 2013-02-14T03:51:51.917 に答える