Skip to content

Instantly share code, notes, and snippets.

@dbeattie71
Forked from lmauri/gist:3957779
Last active August 29, 2015 14:14
Show Gist options
  • Save dbeattie71/e93cd1610cd668da9c9b to your computer and use it in GitHub Desktop.
Save dbeattie71/e93cd1610cd668da9c9b to your computer and use it in GitHub Desktop.
public static void DismissKeyboard(UIView view)
{
if (AppManager.IsKeyboardVisible)
{
var text = new UITextField(RectangleF.Empty);
view.AddSubview(text);
text.BecomeFirstResponder();
text.ResignFirstResponder();
text.RemoveFromSuperview();
text.Dispose();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment