2

我用一些自定义单元格组成了一个表格视图。一些自定义单元格包含UIWebView,一些有UISlider加号UITextField,一些有UIButton

现在,当我单击底部的 uitableviewcell 子视图的文本字段时UITableView我无法让我的表格单元格在键盘上方正确可见。

对我来说,使用 ofUITableViewController代替UIViewController是不可能的。因为我的 UI 结构有些奇怪和动态。简单来说就像

UIView -> UIScrollView with paging -> x number of UITableViews -> y number of UITableViewCell ->  z number of UITextFields, UISliders, UIWebViews, UIButtons, UILables, etc.

我还尝试了下面的代码以使其正常工作。

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
    UITableViewCell *cell = (UITableViewCell*) [[textField superview] superview];
    [table_Question[pageNumber] scrollToRowAtIndexPath:[table_Question[pageNumber] indexPathForCell:cell] atScrollPosition:UITableViewScrollPositionTop animated:YES];
}

但它不工作:(

谢谢,

编辑1:

我已经检查了 textfield、tableviewcell 和 tableview 的引用。所以对象的引用不是问题。

4

3 回答 3

2

试试这个代码......

- (void)textFieldDidBeginEditing:(UITextField *)textField
{
        UITableViewCell *cell = (UITableViewCell*) [[textField superview] superview];
        NSIndexPath *indexPath = [[table_Question[pageNumber] indexPathForCell:cell];

        int totalRows = 0;
        if([[table_Question[pageNumber] numberOfSections] > 1)
         {
              for(int i = 0; i<([indexPath.section] - 1);i++)
               {
                     totalRows += [[table_Question[pageNumber] numberOfRowsInSection:i];
                }
          }

          totalRows += indexPath.row;

        int  yPosition = totalRows * cell.frame.size.height;
        CGPoint offset = CGPointMake(0, yPosition);
        [[table_Question[pageNumber] setContentOffset:offset animated:YES];
}

这将对您有所帮助...

于 2013-03-28T12:12:49.680 回答
1

根据我的理解,UITextField当用户开始UITextField编辑UITableViewCell. 如果是这种情况,您可以将 的 设置contentInsetUITableView所需的大小,然后滚动到所需的索引路径。

以下是示例代码:

-(BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{
    @try
    {
        table_Question[pageNumber].contentInset = UIEdgeInsetsMake(CGFloat Req_top, CGFloat Req_left, CGFloat Req_bottom, CGFloat Req_right);
        [table_Question[pageNumber] scrollToRowAtIndexPath:[table_Question[pageNumber] indexPathForCell:cell] atScrollPosition:UITableViewScrollPositionTop animated:YES];

        //Add this to you code to scroll in the tableview gets hidden by keyboard
        CGPoint scrollPoint = CGPointMake(0, Required_Height);
       [yourScrollView setContentOffset:scrollPoint animated:YES];
    }
}
于 2013-03-28T11:21:44.500 回答
1

试试这个代码

- (void)textFieldDidBeginEditing:(UITextField *)textField
{

    UITableViewCell *aCell = [table_Question[pageNumber] cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:1]];
    CGSize cellSize = aCell.frame.size;
    [table_Question[pageNumber] setContentOffset:CGPointMake(0, cellSize.height*2) animated:YES];
}
于 2013-03-28T12:06:55.147 回答