Wednesday, 4 January 2012

Dismissing the keyboard

for(UIView *subView in [self.view subViews]){
     [subView resignFirstResponder];
}

Is this really the best way to insure the keyboard is dismissed? Surly there has to be a better way than using resign first responder?

No comments:

Post a Comment