Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I submitted my app a little over a week ago and got the dreaded rejection email today. It tells me that my app cannot be accepted because I'm using a non-public API; specifically, it says,

The non-public API that is included in your application is firstResponder.

Now, the offending API call is actually a solution I found here on SO:

UIWindow *keyWindow = [[UIApplication sharedApplication] keyWindow];
UIView   *firstResponder = [keyWindow performSelector:@selector(firstResponder)];

How do I get the current first responder on the screen? I'm looking for a way that won't get my app rejected.

I figured this out based on the solution provided by Thomas below. Here is what the final code looks like:

@implementation UIView (FindFirstResponder)
- (UIView *)findFirstResponder
{
    if (self.isFirstResponder) {        
        return self;     
    }

    for (UIView *subView in self.subviews) {
        UIView *firstResponder = [subView findFirstResponder];

        if (firstResponder != nil) {
            return firstResponder;
        }
    }

    return nil;
}
@end
share|improve this question
2  
Good, elegant solution. Just FYI, you've got a typo in the above- findFirstResonder is missing a 'p'. – joerick Jun 27 '11 at 12:15
2  
So what is the question? – Jim Thio Nov 13 '12 at 10:46

11 Answers

up vote 157 down vote accepted

In my application, I often want the first responder to resign if the user taps on the background. For this purpose I wrote this category on UIView, which I call on the UIWindow.

@implementation UIView (FindAndResignFirstResponder)
- (BOOL)findAndResignFirstResponder
{
    if (self.isFirstResponder) {
        [self resignFirstResponder];
        return YES;     
    }
    for (UIView *subView in self.subviews) {
        if ([subView findAndResignFirstResponder])
            return YES;
    }
    return NO;
}
@end

That's different from what you're trying to do, but should give you an idea how to approach this.

share|improve this answer
1  
Excellent solution. I modified your category for my needs as follows: @implementation UIView (FindFirstResponder) - (UIView *)findFirstResonder { if (self.isFirstResponder) { return self; } for (UIView *subView in self.subviews) { UIView *firstResponder = [subView findFirstResonder]; if (firstResponder != nil) { return firstResponder; } } return nil; } @end – Justin Kredible Dec 1 '09 at 1:15
oops, formatting got screwed up. – Justin Kredible Dec 1 '09 at 1:15
1  
Great answer, just a small spelling mistake: "findAndResignFirstResonder" should be "findAndResignFirstRespon[d]er" – Alan Rogers Jun 2 '10 at 7:31
114  
Why is this a better solution than simply calling [self.view endEditing:YES]? – Tim Sullivan Aug 20 '10 at 22:25
10  
@Tim I didn't you could do that. It's obviously a much simpler way to resign the first responder. It doesn't help with the original questions, though, which was to identify the first responder. – Thomas Müller Aug 22 '10 at 23:01
show 4 more comments

If your ultimate aim is just to resign the first responder, this should work: [self.view endEditing:YES]

share|improve this answer
15  
This is the solution. – Eonil Jul 19 '10 at 4:34
2  
So easy. While others inviting strange hacks.... – Lukasz Dec 12 '10 at 16:26
28  
For all of you saying that this is the answer to the "question", can you take a look at the actual question? The question asks how to get the current first responder. Not how to resign the first responder. – Justin Kredible Jan 4 '12 at 20:02
1  
@JohnConnor yes you're quite right - I hope this rephrasing is satisfactory. – cdyson37 Jul 11 '12 at 12:26
1  
True enough that this is not exactly answering the question, but clearly it is a very useful answer. Thanks! – NovaJoe Nov 29 '12 at 15:52
show 8 more comments

A common way of manipulating the first responder is to use nil targeted actions. This is a way of sending an arbitrary message to the responder chain (starting with the first responder), and continuing down the chain until someone responds to the message (has implemented a method matching the selector).

For the case of dismissing the keyboard, this is the most effective way that will work no matter which window or view is first responder:

[[UIApplication sharedApplication] sendAction:@selector(resignFirstResponder) to:nil from:nil forEvent:nil];

This should be more effective than even [self.view.window endEditing:YES].

(Thanks to BigZaphod for reminding me of the concept)

share|improve this answer

It's not pretty, but the way I resign the firstResponder when I don't know what that the responder is:

Create an UITextField, either in IB or programmatically. Make it Hidden. Link it up to your code if you made it in IB.

Then, when you want to dismiss the keyboard, you switch the responder to the invisible text field, and immediately resign it:

    [self.invisibleField becomeFirstResponder];
    [self.invisibleField resignFirstResponder];
share|improve this answer
28  
This is both horrible and genius at the same time. Nice. – Alex Wayne Jun 2 '10 at 17:54
I find that a bit dangerous - Apple may decide one day that making a hidden control become the first responder is not intended behavior and "fix" iOS not to do this any more, and then your trick may stop working. – Thomas Tempelmann Oct 24 '12 at 13:16

Iterate over the views that could be the first responder and use - (BOOL)isFirstResponder to determine if they currently are.

share|improve this answer

This is what I did to find what UITextField is the firstResponder when the user clicks Save/Cancel in a ModalViewController:

    NSArray *subviews = [self.tableView subviews];

for (id cell in subviews ) 
{
    if ([cell isKindOfClass:[UITableViewCell class]]) 
    {
        UITableViewCell *aCell = cell;
        NSArray *cellContentViews = [[aCell contentView] subviews];
        for (id textField in cellContentViews) 
        {
            if ([textField isKindOfClass:[UITextField class]]) 
            {
                UITextField *theTextField = textField;
                if ([theTextField isFirstResponder]) {
                    [theTextField resignFirstResponder];
                }

            }
        }

    }

}
share|improve this answer

You can try also like this:

- (void) touchesBegan: (NSSet *) touches withEvent: (UIEvent *) event { 

    for (id textField in self.view.subviews) {

        if ([textField isKindOfClass:[UITextField class]] && [textField isFirstResponder]) {
            [textField resignFirstResponder];
        }
    }
} 

I didn't try it but it seems a good solution

share|improve this answer

This is what I have in my UIViewController Category. Useful for many things, including getting first responder. Blocks are great!

- (UIView*) enumerateAllSubviewsOf: (UIView*) aView UsingBlock: (BOOL (^)( UIView* aView )) aBlock {

 for ( UIView* aSubView in aView.subviews ) {
  if( aBlock( aSubView )) {
   return aSubView;
  } else if( ! [ aSubView isKindOfClass: [ UIControl class ]] ){
   UIView* result = [ self enumerateAllSubviewsOf: aSubView UsingBlock: aBlock ];

   if( result != nil ) {
    return result;
   }
  }
 }    

 return nil;
}

- (UIView*) enumerateAllSubviewsUsingBlock: (BOOL (^)( UIView* aView )) aBlock {
 return [ self enumerateAllSubviewsOf: self.view UsingBlock: aBlock ];
}

- (UIView*) findFirstResponder {
 return [ self enumerateAllSubviewsUsingBlock:^BOOL(UIView *aView) {
  if( [ aView isFirstResponder ] ) {
   return YES;
  }

  return NO;
 }];
}
share|improve this answer

With a category on UIResponder, it is possible to legally ask the UIApplication object to tell you who the first responder is.

See this:

Is there any way of asking an iOS view which of its children has first responder status?

share|improve this answer

You must not forget about UIViewControllers, that may be as UIViews the FirstResponder.

For that reason, you may loop into the UIViewController hierarchy, as well as into the UIView hierarchy.

@implementation UIView (FindFirstResponder)

- (UIView *)findFirstResponder
{
    if (self.isFirstResponder) {        
        return self;     
    }

    for (UIView *subView in self.subviews) {
        UIView *firstResponder = [subView findFirstResponder];

        if (firstResponder != nil) {
            return firstResponder;
        }
    }

    return nil;
}

@end

@implementation UIViewController (FindFirstResponder)

- (id)findFirstResponder
{
    if (self.isFirstResponder) {        
        return self;     
    }

    id firstResponder = [self.view findFirstResponder];    
    if (firstResponder != nil) {
        return firstResponder;
    }

    for (UIViewController *childViewController in self.childViewControllers) {
        firstResponder = [childViewController findFirstResponder];

        if (firstResponder != nil) {
            return firstResponder;
        }
    }

    return nil;
}

@end

So, now, in your method you can get the first responder simply by doing:

- (void)foo
{
    UIWindow *mainWindow = [[UIApplication sharedApplication] keyWindow];
    UIResponder *firstResponder = [mainWindow.rootViewController findFirstResponder];

    // Do what you want with your firstResponder
}
share|improve this answer

Peter Steinberger just tweeted about the private notification UIWindowFirstResponderDidChangeNotification, which you can observe if you want to watch the firstResponder change.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.