up vote 71 down vote favorite
45
share [g+] share [fb]

I submitted my app a little over a week ago and got the dreaded rejection email today. It reads as follows:

Dear -----------,

Thank you for submitting --------- to the App Store. Unfortunately it cannot be added to the App Store because it is using a private API. Use of non-public APIs, which as outlined in the iPhone Developer Program License Agreement section 3.3.1 is prohibited:

"3.3.1 Applications may only use Documented APIs in the manner prescribed by Apple and must not use or call any private APIs."

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

Regards,

iPhone Developer Program

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)];

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

Thanks.

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

EDIT: Spelling error corrected.

link|improve this question

67% accept rate
1  
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
feedback

7 Answers

up vote 76 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.

link|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 – John Connor Dec 1 '09 at 1:15
oops, formatting got screwed up. – John Connor 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
41  
Why is this a better solution than simply calling [self.view endEditing:YES]? – Tim Sullivan Aug 20 '10 at 22:25
5  
@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 3 more comments
feedback

[self.view endEditing:YES] works for me

link|improve this answer
Great find. Very useful. – Luther Baker Jul 6 '10 at 6:01
11  
This is the solution. – Eonil Jul 19 '10 at 4:34
Awesome find! This is good. – Brian Liang Oct 9 '10 at 1:46
1  
So easy. While others inviting strange hacks.... – Lukasz Dec 12 '10 at 16:26
Oh man this is awesome. Just found this. :D – sudo rm -rf Mar 5 '11 at 4:09
show 4 more comments
feedback

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];
link|improve this answer
11  
This is both horrible and genius at the same time. Nice. – Alex Wayne Jun 2 '10 at 17:54
feedback

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

link|improve this answer
feedback

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];
                }

            }
        }

    }

}
link|improve this answer
feedback

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

link|improve this answer
feedback

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;
 }];
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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