2010-07-10 9 views

Répondre

2

Faites-en le premier répondeur. Voir this link pour un tutoriel d'Apple.

+0

travaillé comme un charme –

+0

Content de l'entendre. – jer

1

Simple

[self.myTextView becomeFirstResponder]; 
0

Appeler l'objet à un First Responder le fera. Mais j'ai passé quelques minutes à découvrir qu'il est préférable de l'assigner .. DERNIÈRE!

[UITextFeild becomeFirstResponder]; 

Si vous avez un UIView d'animation par exemple, assigner après la vue est tracée.

[UIView animateWithDuration:0.9 
animations:^{ 
    UIView.frame = newFrame; 
} 
completion:^(BOOL finished){ 
    [UIView animateWithDuration:0.9 
     animations:^{} 
     completion:^(BOOL finished){ 
     [UITextFeild becomeFirstResponder];// << Right here.. 
    }]; 
}];