繁体   English   中英

键盘隐藏自定义单元格

[英]Keyboard hides the custom cell

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

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

- (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];
}

但它似乎不起作用。

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

- (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];
}

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

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

希望这会有所帮助

#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];
}

我做这种类型的应用程序,你只需要 textFieldname 或 textfield 标签..你可以将标签给 textField with visiblecell ...

- (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 作为注册表单,这不是你想要的完美代码,但我认为你可以从这段代码中得到想法......希望,这对你有帮助...... :)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM