1

我的表格视图中有一个自定义单元格,当显示键盘时,我的一些单元格隐藏在键盘后面。

为了解决这个问题,我尝试如下

- (void) textFieldDidBeginEditing:(UITextField *)textField {
    CustomCell *cell = (CustomCell*) [[textField superview] superview];

    NSIndexPath *indexPath = [self.mySmlMsgTemplatesTbl indexPathForCell:cell];
    [self.mySmlMsgTemplatesTbl scrollToRowAtIndexPath:indexPath atScrollPosition:UITableViewScrollPositionTop animated:YES];


   // [self.mySmlMsgTemplatesTbl scrollToRowAtIndexPath:[self.mySmlMsgTemplatesTbl indexPathForCell:cell] atScrollPosition:UITableViewScrollPositionTop animated:YES];
}

但它似乎不起作用。

4

4 回答 4

1

您应该尝试以下代码,如下所示。我没有尝试过,但它应该可以工作。

- (void)textFieldDidBeginEditing:(UITextField *)textField{  
    CGPoint point = [self.tableView convertPoint:yourtextview.bounds.origin fromView:yourtextview];
    NSIndexPath* path = [self.tableView indexPathForRowAtPoint:point];
    [self.tableView scrollToRowAtIndexPath:path atScrollPosition:UITableViewScrollPositionTop animated:YES];
}
于 2012-05-18T11:20:44.860 回答
0

我做这种类型的应用程序,您只需要 textFieldname 或 textfield 标签 ..您可以使用 visiblecell 将标签添加到 textField ...

- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField
{

    if(textField.tag==3)
    {
        tableview.frame=CGRectMake(tableview.frame.origin.x, tableview.frame.origin.y-40,tableview.frame.size.width , tableview.frame.size.height+40);

    }
    else if(textField.tag==4)
    {
        tableview.frame=CGRectMake(tableview.frame.origin.x, tableview.frame.origin.y-40,tableview.frame.size.width , tableview.frame.size.height+40);
    }

}

- (BOOL)textFieldShouldReturn:(UITextField *)textField
{
    if(textField.tag==3)
    {
        tableview.frame=CGRectMake(0,0, 320,460);
        //tableview.frame=CGRectMake(tableview.frame.origin.x, tableview.frame.origin.y+70,tableview.frame.size.width , tableview.frame.size.height-70); 
    }
    else if(textField.tag==4)
    {
        tableview.frame=CGRectMake(0,0, 320,460);
        //tableview.frame=CGRectMake(tableview.frame.origin.x, tableview.frame.origin.y+70,tableview.frame.size.width , tableview.frame.size.height-70);    
    }
}
- (void)textFieldDidEndEditing:(UITextField *)textField
{
    [textField resignFirstResponder];
    if(textField.tag==3)
    {
        tableview.frame=CGRectMake(0,0, 320,460);
        //scrollview.frame=CGRectMake(tableview.frame.origin.x, tableview.frame.origin.y+70,tableview.frame.size.width , tableview.frame.size.height-70);   
    }
    else if(textField.tag==4)
    {
        tableview.frame=CGRectMake(0,0, 320,460);
        //tableview.frame=CGRectMake(scrollview.frame.origin.x, tableview.frame.origin.y-70,tableview.frame.size.width , tableview.frame.size.height+70); 
    }

}

我在这里使用 scrollView 进行注册表单,这不是你想要的完美代码,但我认为你可以从这段代码中得到想法......希望,这对你有帮助.. :)

于 2012-05-18T11:55:26.647 回答
0

例如,如果它是最后一个单元格,这将不起作用。表格视图不能向上滚动那么远。您将需要调整 tableview 框架的大小或使用它的 contentInset 属性来调整它的大小。

于 2012-05-18T10:36:36.317 回答
0

还有另一种方法。您可以尝试上下移动整个视图。

希望这会有所帮助

#define     kOFFSET_FOR_KEYBOARD    200.0


- (BOOL)textFieldShouldBeginEditing:(UITextField*)textField {
    [txtField addTarget:self action:@selector(setViewMovedUp:)forControlEvents:UIControlEventEditingDidBegin];
    [txtField addTarget:self action:@selector(setViewMovedDown:)forControlEvents:UIControlEventEditingDidEndOnExit];
}

-(void)setViewMovedUp:(id)sender
{
if (isKeyboardAppeared) {
    return;
}

isKeyboardAppeared = YES;

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3]; // if you want to slide up the view

CGRect rect = self.view.frame;

rect.origin.y -= kOFFSET_FOR_KEYBOARD;
rect.size.height += kOFFSET_FOR_KEYBOARD;

self.view.frame = rect;
[UIView commitAnimations];
}

-(void)setViewMovedDown:(id)sender
{
[self actionSaveRegistration];
if (!isKeyboardAppeared) {
    return;
}

isKeyboardAppeared = NO;

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:0.3]; 

CGRect rect = self.view.frame;

rect.origin.y += kOFFSET_FOR_KEYBOARD;
rect.size.height -= kOFFSET_FOR_KEYBOARD;

self.view.frame = rect;

[UIView commitAnimations];
}
于 2012-05-18T11:40:21.610 回答