键盘出现时滑动形式

时间:2011-05-05 05:38:11

标签: objective-c cocoa-touch

你好我正在使用表格进行数据录入, 一些文本字段位于表单的底部。 当我单击文本字段进行写入时,会出现键盘并隐藏字段以使其显示。如果我使textfield第一响应者它隐藏键盘,但通过这样做,我无法做到这一点。 我想知道当键盘出现时,整个表格应该按照我的最后一个字段出现在键盘操作上的方式向上移动 提前谢谢

3 个答案:

答案 0 :(得分:6)

在滚动视图中添加所有视图并设置滚动视图和文本字段的委托,然后使用这些委托和方法 -

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

   [self scrollViewToCenterOfScreen:textField];     
    return YES;

}

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

    if ([textField isEqual:txtField1])
    {
        [txtField2 becomeFirstResponder];
    }
    else if ([textField isEqual:txtField2])
    {
        [txtField3 becomeFirstResponder];
    }
    else 
    {
        [textField resignFirstResponder];       
        [scrollView setContentOffset:CGPointMake(0, 0) animated:YES];
    }

    return YES;

}

- (void)scrollViewToCenterOfScreen:(UIView *)theView {  
    CGFloat viewCenterY = theView.center.y;  
    CGRect applicationFrame = [[UIScreen mainScreen] applicationFrame];  

    CGFloat availableHeight = applicationFrame.size.height - 200;            // Remove area covered by keyboard  

    CGFloat y = viewCenterY - availableHeight / 2.0;  
    if (y < 0) {  
        y = 0;  
    }  
    [scrollView setContentOffset:CGPointMake(0, y) animated:YES];  

}

答案 1 :(得分:1)

您可以使用多种策略来执行此操作 - 其中大部分都涉及将视图包装在UIScrollView中,并在获得焦点时滚动到适当的控件。您可以在此处找到Apple的文档:http://developer.apple.com/library/ios/#documentation/StringsTextFonts/Conceptual/TextAndWebiPhoneOS/KeyboardManagement/KeyboardManagement.html

答案 2 :(得分:0)