1

我在滚动视图中有一个文本字段。当我点击文本字段添加文本时,键盘弹出,文本字段消失在键盘后面。如何解决这个问题?滚动视图应向下滚动,以便在键入时文本字段仍然可见。

我为一个 Objective-C 项目找到了几个解决方案。不幸的是,我使用的是 Mono Touch/C#。

我已经为文本字段创建了一个委托。我应该在方法“public override void EditingStarted (UITextField textField)”中添加什么来使其工作?

public class CloseTextfieldDelegate : UITextFieldDelegate{
    private NewReportScreen controller;

    public CloseTextfieldDelegate(NewReportScreen newReportScreen)
    {
        controller = newReportScreen;
    }

    public override bool ShouldReturn (UITextField textField)
    {
        textField.ResignFirstResponder();
        return false;
    }

    public override void EditingStarted (UITextField textField)
    {
        //DO SOMETHING (MAKE TEXTFIELD VISIBLE SO IT DOESN'T DISAPPEARS BEHIND THE KEYBOARD)
    }
}
4

2 回答 2

1

例如,这就是使用 ObjC 解决的方法。在这里,我只是移动包含文本字段的视图,使其可见(也许您可以将此代码转换为 mono/C#.

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

    if (textField == myTf)
    {
        CGRect rect = inputFieldsView.frame;
        rect.origin.y = -100;//move the view that contains the TextFiled up
        inputFieldsView.frame = rect;
    }
}
于 2013-02-19T09:22:31.400 回答
0

我在 CloseTextfieldDelegate 类中使用以下方法解决了这个问题:

public override void EditingStarted (UITextField textField)  //used to scroll the scrollview when editing a textfield
    {
        var yPositionTextFieldDescription =  (newReportController.usedTextFieldDescription.Frame.Location.Y - 143);
        var yPositionTextFieldRoom =  (newReportController.usedTextFieldRoom.Frame.Location.Y - 143);   

        if (textField == newReportController.usedTextFieldDescription){ 
            newReportController.usedScrollView.SetContentOffset (new PointF (0, yPositionTextFieldDescription), true);
        }
        else if (textField == newReportController.usedTextFieldRoom){
            newReportController.usedScrollView.SetContentOffset (new PointF (0, yPositionTextFieldRoom), true);
        }
    }

我认为这不是最好的解决方案,但效果很好。

于 2013-02-19T10:51:01.833 回答