2

カスタム セルを含むグループ化されたテーブル ビューがあり、これらのセルにはUITextField. returnKeyTypeテキスト フィールドの をUIReturnKeyNext(最後の行を除いて) に設定し、そのtextFieldShouldReturn:メソッドを次のように実装しました。

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
   id firstResponderCell = textField.superview.superview ;
   NSInteger firstResponderRow = [self.tableView indexPathForCell:firstResponderCell].row ;
   NSIndexPath* nextCellIndexPath = [NSIndexPath indexPathForRow:firstResponderRow+1 inSection:0] ;
   CustomCell* nextCell = (CustomCell*)[self.tableView cellForRowAtIndexPath:nextCellIndexPath] ;

   if (nextCell) {
      [nextCell.cellTextField becomeFirstResponder] ;
   }
   else
      [textField resignFirstResponder] ;
   return YES ;

}

しかし、現在アクティブなテキスト フィールドをキーボードの上に表示するために、テーブル ビューのコンテンツをスクロールすることはできません。キーボードに「次へ」ボタン機能を実装せず、「Enter」ボタンをタップするとキーボードが非表示になり、別のテキストフィールドをタップするとキーボードが再び表示されたときに、これを正常に管理しました。UIKeyboardDidShowNotificationUIKeyboardDidHideNotification。しかし、キーボードに「次へ」ボタンが必要で、ボタンをタップしてもキーボードが非表示にならないため、アクティブなテキストフィールドに適切にスクロールする方法がわかりません。

前もって感謝します

4

2 に答える 2

2

これは、これを実現するための最も簡単で効率的な方法です。

次の定数を追加します。

static const CGFloat KEYBOARD_ANIMATION_DURATION = 0.3;
static const CGFloat MINIMUM_SCROLL_FRACTION = 0.2;
static const CGFloat MAXIMUM_SCROLL_FRACTION = 0.8;
static const CGFloat PORTRAIT_KEYBOARD_HEIGHT = 216;
static const CGFloat LANDSCAPE_KEYBOARD_HEIGHT = 162;

これをView Controllerに追加します:

CGFloat animatedDistance;

そして、これらのメソッドをコードに追加します:

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
CGRect textFieldRect =
[self.view.window convertRect:textField.bounds fromView:textField];
CGRect viewRect =
[self.view.window convertRect:self.view.bounds fromView:self.view];
CGFloat midline = textFieldRect.origin.y + 0.5 * textFieldRect.size.height;
CGFloat numerator =
midline - viewRect.origin.y
- MINIMUM_SCROLL_FRACTION * viewRect.size.height;
CGFloat denominator =
(MAXIMUM_SCROLL_FRACTION - MINIMUM_SCROLL_FRACTION)
* viewRect.size.height;
CGFloat heightFraction = numerator / denominator;
if (heightFraction < 0.0)
{
    heightFraction = 0.0;
}
else if (heightFraction > 1.0)
{
    heightFraction = 1.0;
}
UIInterfaceOrientation orientation =
[[UIApplication sharedApplication] statusBarOrientation];
if (orientation == UIInterfaceOrientationPortrait ||
    orientation == UIInterfaceOrientationPortraitUpsideDown)
{
    animatedDistance = floor(PORTRAIT_KEYBOARD_HEIGHT * heightFraction);
}
else
{
    animatedDistance = floor(LANDSCAPE_KEYBOARD_HEIGHT * heightFraction);
}
CGRect viewFrame = self.view.frame;
viewFrame.origin.y -= animatedDistance;

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:KEYBOARD_ANIMATION_DURATION];

[self.view setFrame:viewFrame];

[UIView commitAnimations];

}

- (void)textFieldDidEndEditing:(UITextField *)textField
    {
CGRect viewFrame = self.view.frame;
viewFrame.origin.y += animatedDistance;

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:KEYBOARD_ANIMATION_DURATION];

[self.view setFrame:viewFrame];

[UIView commitAnimations];

}

PS: これはここからです。

于 2013-12-04T06:01:38.283 に答える