在将其.hidden属性设置为 NO后,我将焦点放在 UITextView上。当我设置 [textView becomeFirstResponder] 时,textView 会获得小的打字光标,但键盘仍然隐藏。知道为什么吗?如果有帮助,主视图是 UINavigationController 呈现的模式视图。
编辑:这是被调用的方法:
- (void)show_comment_elements {
toolbar.hidden = YES;
main_table.hidden = YES;
add_comment_table.hidden = NO;
comment_text.hidden = NO;
[comment_text becomeFirstResponder];
}
这是一个屏幕截图: