如何使用视图顶部的工具栏滚动表格视图
Posted
技术标签:
【中文标题】如何使用视图顶部的工具栏滚动表格视图【英文标题】:How to scroll table view with toolbar at the top of the view 【发布时间】:2010-04-06 19:19:39 【问题描述】:我有一个顶部带有工具栏的视图,以及一个在其单元格中带有文本字段的表格视图。当我想编辑放置在表格视图底部的文本字段时,键盘会隐藏正在编辑的文本字段(因为表格视图没有向上滚动)。 我试图实现http://cocoawithlove.com/2008/10/sliding-uitextfields-around-to-avoid.html 但这会使我的整个视图向上移动(工具栏和表格视图),而我希望工具栏一直位于视图的顶部。 我把上面提到的代码修改成这样:
- (void)textFieldDidBeginEditing:(UITextField *)textField
CGRect textFieldRect = [tableView.window convertRect:textField.bounds fromView:textField];
CGRect viewRect = [tableView.window convertRect:tmpTableView.bounds fromView:tableView];
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 = tableView.frame;
viewFrame.origin.y -= animatedDistance;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:KEYBOARD_ANIMATION_DURATION];
[tableView setFrame:viewFrame];
[UIView commitAnimations];
和
- (void)textFieldDidEndEditing:(UITextField *)textField
CGRect viewFrame = tableView.frame;
viewFrame.origin.y += animatedDistance;
[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:KEYBOARD_ANIMATION_DURATION];
[tableView setFrame:viewFrame];
[UIView commitAnimations];
这使我的工具栏停留在顶部,但不幸的是表格视图覆盖了工具栏并且工具栏不可见。
有什么办法解决这个问题吗?
【问题讨论】:
【参考方案1】:您应该调整它的大小以使键盘不会与它重叠,而不是重新定位表格视图。
【讨论】:
但我想滚动表格视图以在键盘上方编辑文本字段。简单调整表格视图的大小是否可以实现相同的行为? 调整大小后,您可以使用scrollToRowAtIndexPath:atScrollPosition:animated:
将任何单元格滚动到可见区域。
如果我可以将任何单元格滚动到可见区域,那么调整大小有什么用?即使表格视图是正常大小,我也可以滚动,对吗?顺便提一句。我无法让 scrollToRowAtIndexPath:atScrollPosition:animated: 工作。我简单地尝试了: NSIndexPath* ip = [NSIndexPath indexPathForRow:1 inSection:1]; [self.settingsTableView scrollToRowAtIndexPath:ip atScrollPosition:UITableViewScrollPositionTop 动画:NO];从第二行滚动第二个单元格(只是为了看看它是否有效),它隐藏在键盘下方。以上是关于如何使用视图顶部的工具栏滚动表格视图的主要内容,如果未能解决你的问题,请参考以下文章