Created
June 15, 2014 23:59
-
-
Save swr/110448fdd2a2049a8e13 to your computer and use it in GitHub Desktop.
Re-enable the ability to resignFirstResponder in a modal view
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In the view controller controlling the modal: | |
- (BOOL)disablesAutomaticKeyboardDismissal { | |
return NO; | |
} | |
// Then you can | |
[self.state resignFirstResponder]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment