This is the problem : when MessageComposeViewController has been dismissed, my textView doesn't become the first responder and the keyboard doesn't appear. Why? I put the [textView becomeFirstResponder]
code in viewWillAppear
. How can i do??
I called becomeFirstResponder later by this line:
[self.searchBar performSelector:@selector(becomeFirstResponder) withObject:nil afterDelay:0.1f];
It worked for me. Hope this help.
I guess it's the animation's reason.