我试图在不使用UITextView
and的情况下显示 UIKeyboard UITextField
。我正在按照以下源代码在我的应用程序中显示键盘。
UIKeyboard *keyboard = [[[UIKeyboard alloc] initWithFrame: CGRectMake(0.0f, 220.0f, 320.0f, 216.0f)] autorelease];
[keyboard setReturnKeyEnabled:NO];
[keyboard setTapDelegate:editingTextView];
但显示以下错误的代码,
Use of undeclared identifier 'UIKeyboard'
Use of undeclared identifier 'keyboard'
有人请帮忙解决这个错误吗?请告诉我这是在不使用UITextView
and的情况下显示键盘的正确方法UITextField
?