Skip to content

Instantly share code, notes, and snippets.

@vpdn
Created June 17, 2014 08:18
Show Gist options
  • Save vpdn/65300ab4314179f6935f to your computer and use it in GitHub Desktop.
Save vpdn/65300ab4314179f6935f to your computer and use it in GitHub Desktop.
First responder
static __weak id currentFirstResponder;
@implementation UIResponder (FirstResponder)
+(id)currentFirstResponder {
currentFirstResponder = nil;
[[UIApplication sharedApplication] sendAction:@selector(findFirstResponder:) to:nil from:nil forEvent:nil];
return currentFirstResponder;
}
-(void)findFirstResponder:(id)sender {
currentFirstResponder = self;
}
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment