I'm bringing focus to a UITextView after setting its .hidden property to NO. When I set the [textView becomeFirstResponder] the textView gets the little typing cursor, but the keyboard remains hidden. Any idea why? If it helps, the main view is a modal view that a UINavigationController is presenting.
EDIT: Here's the method that gets called:
- (void)show_comment_elements {
toolbar.hidden = YES;
main_table.hidden = YES;
add_comment_table.hidden = NO;
comment_text.hidden = NO;
[comment_text becomeFirstResponder];
}
Here's a screenshot: