Skip to content

Instantly share code, notes, and snippets.

@bryanluby
Last active March 2, 2017 08:15
Show Gist options
  • Save bryanluby/8773920 to your computer and use it in GitHub Desktop.
Save bryanluby/8773920 to your computer and use it in GitHub Desktop.
Resign first responder from anywhere.
// Make sure viewDidAppear has happened before sending this action to ensure that all links
// in the responder chain are connected.
// http://stackoverflow.com/a/11768282/1306872
[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder)
to:nil
from:nil
forEvent:nil];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment