Search code examples
iosobjective-ccocoa-touch

Easy way to dismiss keyboard?


I have quite a few controls scattered throughout many table cells in my table, and I was wondering if there's an easier way to dismiss the keyboard without having to loop through all my controls and resigning them all as the first responder. I guess the question is.. How would I get the current first responder to the keyboard?


Solution

  • Try:

    [self.view endEditing:YES];