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
For my implementation, [self.view endEditing:YES] did not work.
To finally make sure the keyboard was hidden, I had to make one of my views the first responder, and then immediately make it resign as per the function below:
-(void) hideKeyboardPlease{
[uiTextTo becomeFirstResponder];
[uiTextTo resignFirstResponder];
}