Skip to content

Instantly share code, notes, and snippets.

View jacoblyles's full-sized avatar

Jacob jacoblyles

  • Feeling Good
  • Lancaster, PA
View GitHub Profile
@jacoblyles
jacoblyles / NiftyViewController.m
Created November 19, 2010 03:12
Method to hide keyboard when background tapped
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event{
for (UITouch *touch in touches){
if (touch.view == self.view){
[self findAndResignFirstResponder];
}
}
}
-(void)findAndResignFirstResponder{