I have filled my view with ScrollView (same size as the view) and I\'m stuck at how to resign first responder when user tap elsewhere in the View (or the scrollview). Any id
I found an answer here: link
If your ultimate aim is just to resign the first responder, this should work: [self.view endEditing:YES]
This method is designed right for it! Reference: endEditing:
Causes the view (or one of its embedded text fields) to resign the first responder status.