那么,有没有办法强制d出软键盘,甚至认为我有一个硬件键盘连接?解决方法 是。我们已经在我们的几个应用程序中完成了这一点,当用户将蓝牙扫描仪“键盘”与设备配对时。你可以做的是确保你的textFIEld有一个inputAccessoryVIEw,然后强制inputAccessoryVIEw的框架。这将导致键盘在屏幕上显示。
我们在AppDelegate中添加了以下两个函数。 ‘inputAccessoryVIEw’变量是我们在应用程序委托中声明的一个UIVIEw *:
//This function responds to all textFIEldBegan editing// we need to add an accessory vIEw and use that to force the keyboards frame// this way the keyboard appears when the scanner is attached-(voID) textFIEldBegan: (NSNotification *) theNotification{ UITextFIEld *theTextFIEld = [theNotification object]; // NSLog(@"textFIEldBegan: %@",theTextFIEld); if (!inputAccessoryVIEw) { inputAccessoryVIEw = [[UIVIEw alloc] initWithFrame:CGRectMake(0,navigationController.vIEw.frame.size.wIDth,1)]; } theTextFIEld.inputAccessoryVIEw = inputAccessoryVIEw; [self performSelector:@selector(forceKeyboard) withObject:nil afterDelay:0];}//Change the inputAccessoryVIEw frame - this is correct for portrait,use a different// frame for landscape-(voID) forceKeyboard{ inputAccessoryVIEw.supervIEw.frame = CGRectMake(0,759,768,265);}
然后在我们的applicationDIDFinishLaunching中,我们添加了这个通知观察者,所以我们可以随时收到一个文本字段开始编辑的事件
//Setup the textFIEldNotifications [[NSNotificationCenter defaultCenter] addobserver:self selector:@selector(textFIEldBegan:) name:UITextFIEldTextDIDBeginEditingNotification object:nil];
希望有帮助!
总结以上是内存溢出为你收集整理的显示iPhone软键盘,即使连接了硬件键盘全部内容,希望文章能够帮你解决显示iPhone软键盘,即使连接了硬件键盘所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)