Xamarin.iOS - Handing Keyboard

1. Scroll view when keyboard hide your input views

LINK - http://www.gooorack.com/2013/08/28/xamarin-moving-the-view-on-keyboard-show/

2. Hide keyboard on touching empty space of current UIViewController

public override void TouchesBegan(NSSet touches, UIEvent evt)
        {
            base.TouchesBegan(touches, evt);
            this.View.EndEditing(true);//hide keyboard on touching empty
        }

你可能感兴趣的:(Xamarin.iOS - Handing Keyboard)