I have view controller. it pushed by another's navigation controller. In ViewController.m:

- (BOOL)canBecomeFirstResponder
{ return YES; }

- (void) viewDidAppear:(BOOL)animated
{
    [self.view becomeFirstResponder];
    NSLog(@"%d", [self.view isFirstResponder]);
    [super viewDidAppear:animated];
}

it's allways 0. Why?

link|improve this question

What is self.view? Not all UIView subclasses can become first responder. – jrturton Nov 8 '11 at 10:45
is't a usual viewController's view. i'm trying to make a shake> useing that question: (stackoverflow.com/questions/150446/…) It's just doesn't work at all. – SentineL Nov 8 '11 at 11:00
feedback

1 Answer

up vote 1 down vote accepted

Your view has to accept first responder status. This is implemented in your view's subclass code, you have to override canBecomeFirstResponderand return YES:

- (BOOL)canBecomeFirstResponder 
{ 
    return YES; 
} 
link|improve this answer
you'r right. I tryed to set this methods to ViewController, and this is wrong. now my ViewController.view IS firest responder, but shake doesn't work anyway. – SentineL Nov 8 '11 at 11:49
feedback

Your Answer

 
or
required, but never shown

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