找不到支持键盘iPhone-Portrait-NumberPad的类型4的键盘;使用3876877096_Portrait_iPhone-Simple-Pad_Default


114

我已经为iPhone和SDK下载了iOS 8 Gold Master。

我测试了该应用程序,除了一件事,它运行正常。

我有一个文本字段,如果用户想要输入某些内容,则会在其中显示数字键盘,此外,当键盘显示时,自定义按钮会添加到空白区域。

- (void)addButtonToKeyboard
{
    if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone)
    {
        // create custom button
        UIButton * doneButton = [UIButton buttonWithType:UIButtonTypeCustom];
        doneButton.frame = CGRectMake(-2, 163, 106, 53);
        doneButton.adjustsImageWhenHighlighted = NO;
        [doneButton setImage:[UIImage imageNamed:@"DoneUp.png"] forState:UIControlStateNormal];
        [doneButton setImage:[UIImage imageNamed:@"DoneDown.png"] forState:UIControlStateHighlighted];
        [doneButton addTarget:self action:@selector(saveNewLead:) forControlEvents:UIControlEventTouchUpInside];

        // locate keyboard view
        UIWindow * tempWindow = [[[UIApplication sharedApplication] windows]objectAtIndex:1];
        UIView* keyboard;
        for(int i=0; i<[tempWindow.subviews count]; i++) 
        {
            keyboard = [tempWindow.subviews objectAtIndex:i];

            // keyboard view found; add the custom button to it
            if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 3.2) {
                if([[keyboard description] hasPrefix:@"<UIPeripheralHost"] == YES)
                    [keyboard addSubview:doneButton];
            } else {
                if([[keyboard description] hasPrefix:@"<UIKeyboard"] == YES)
                    [keyboard addSubview:doneButton];
            }
        }
    }

}

到现在为止,这个工作一直很好。

首先,我收到以下警告:

找不到支持键盘iPhone-Portrait-NumberPad的类型4的键盘;使用3876877096_Portrait_iPhone-Simple-Pad_Default

那么该自定义按钮也不会显示,我认为是由于以下两行:

if([[keyboard description] hasPrefix:@"<UIPeripheralHost"] == YES)

if([[keyboard description] hasPrefix:@"<UIKeyboard"] == YES)

有什么建议?

Answers:


10

我也遇到了这个问题,找到了解决方案。

以下是适用于iOS 8.0以及以下版本的代码。

我已经在iOS 7和8.0(Xcode版本6.0.1)上对其进行了测试。

- (void)addButtonToKeyboard
    {
    // create custom button
    self.doneButton = [UIButton buttonWithType:UIButtonTypeCustom];
            //This code will work on iOS 8.3 and 8.4. 
       if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.3) {
            self.doneButton.frame = CGRectMake(0, [[UIScreen mainScreen]   bounds].size.height - 53, 106, 53);
      } else {
           self.doneButton.frame = CGRectMake(0, 163+44, 106, 53);
      }

    self.doneButton.adjustsImageWhenHighlighted = NO;
    [self.doneButton setTag:67123];
    [self.doneButton setImage:[UIImage imageNamed:@"doneup1.png"] forState:UIControlStateNormal];
    [self.doneButton setImage:[UIImage imageNamed:@"donedown1.png"] forState:UIControlStateHighlighted];

    [self.doneButton addTarget:self action:@selector(doneButton:) forControlEvents:UIControlEventTouchUpInside];

    // locate keyboard view
    int windowCount = [[[UIApplication sharedApplication] windows] count];
    if (windowCount < 2) {
        return;
    }

    UIWindow *tempWindow = [[[UIApplication sharedApplication] windows] objectAtIndex:1];
    UIView *keyboard;

    for (int i = 0; i < [tempWindow.subviews count]; i++) {
        keyboard = [tempWindow.subviews objectAtIndex:i];
             // keyboard found, add the button
          if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.3) {

            UIButton *searchbtn = (UIButton *)[keyboard viewWithTag:67123];
            if (searchbtn == nil)
                [keyboard addSubview:self.doneButton];

            } else {   
                if([[keyboard description] hasPrefix:@"<UIPeripheralHost"] == YES) {
              UIButton *searchbtn = (UIButton *)[keyboard viewWithTag:67123];
                   if (searchbtn == nil)//to avoid adding again and again as per my requirement (previous and next button on keyboard)
                [keyboard addSubview:self.doneButton];

        } //This code will work on iOS 8.0
        else if([[keyboard description] hasPrefix:@"<UIInputSetContainerView"] == YES) {

            for (int i = 0; i < [keyboard.subviews count]; i++)
            {
                UIView *hostkeyboard = [keyboard.subviews objectAtIndex:i];

                if([[hostkeyboard description] hasPrefix:@"<UIInputSetHost"] == YES) {
                    UIButton *donebtn = (UIButton *)[hostkeyboard viewWithTag:67123];
                    if (donebtn == nil)//to avoid adding again and again as per my requirement (previous and next button on keyboard)
                        [hostkeyboard addSubview:self.doneButton];
                }
            }
        }
      }
    }
 }

>

- (void)removedSearchButtonFromKeypad 
    {

    int windowCount = [[[UIApplication sharedApplication] windows] count];
    if (windowCount < 2) {
        return;
    }

    UIWindow *tempWindow = [[[UIApplication sharedApplication] windows] objectAtIndex:1];

    for (int i = 0 ; i < [tempWindow.subviews count] ; i++)
    {
        UIView *keyboard = [tempWindow.subviews objectAtIndex:i];

           if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.3){
                [self removeButton:keyboard];                  
            } else if([[keyboard description] hasPrefix:@"<UIPeripheralHost"] == YES) {
                  [self removeButton:keyboard];

             } else if([[keyboard description] hasPrefix:@"<UIInputSetContainerView"] == YES){

            for (int i = 0 ; i < [keyboard.subviews count] ; i++)
            {
                UIView *hostkeyboard = [keyboard.subviews objectAtIndex:i];

                if([[hostkeyboard description] hasPrefix:@"<UIInputSetHost"] == YES) {
                    [self removeButton:hostkeyboard];
                }
            }
        }
    }
}


- (void)removeButton:(UIView *)keypadView 
    {
    UIButton *donebtn = (UIButton *)[keypadView viewWithTag:67123];
    if(donebtn) {
        [donebtn removeFromSuperview];
        donebtn = nil;
    }
}

希望这可以帮助。

但是,我仍然收到此警告:

找不到支持键盘iPhone-Portrait-NumberPad的类型4的键盘;使用3876877096_Portrait_iPhone-Simple-Pad_Default

忽略此警告,我可以正常工作。请让我知道您是否可以从此警告中得到缓解。


对我来说很棒。谢了哥们。
疯狂蛇2014年

对于addDoneButton或removeDoneButton:stackoverflow.com/questions/26031798/…我在iOS-6 / 7/8设备的XCode-5.1.1中运行以上代码。工作完美。
alishaik786 2014年

1
-(void)doneButton:(UIButton *)sender {NSLog(@“ fdsfdsdsf”); }
SampathKumar 2014年

我做了所有这些操作,但是完成按钮不可点击,您能帮我吗?
SergStav 2015年

在最新版本的iOS 8.3及更高版本中,某些更改已导致以前发布的代码失效。我已经添加了iOS 8.3及更高版本的支票,它可能无法在将来的iOS版本中使用。请检查上面。
iGW 2015年

143

更新到最新的Xcode Beta之后,我也遇到了这个问题。模拟器上的设置已刷新,因此检测到便携式计算机(外部)键盘。如果您只是按:

iOS模拟器->硬件->键盘->连接硬件键盘

以便取消选中该条目,然后将再次显示软件键盘。


14
我可能误按了Shift + Cmd + K!
埃里克

1
iOS模拟器->硬件->键盘->连接硬件键盘取消选中它即可解决
EFE 2015年

当您在模拟器上时,这只会跳过引发错误的检查-错误和键盘交换仍将发生在真实设备的真实世界中。
扎克

如果这不起作用,则选择Simulator-> Hardware-> Erase all content and settings。
Wimukthi Rajapaksha

1
对于11.5版;iOS模拟器-> I / O->键盘->连接硬件键盘
miletliyusuf

40

模拟器尝试在Mac上找到数字小键盘,但是找不到(MacBook Pro,MacBook Air和“普通/小”键盘没有)。您可以取消选择“连接硬件键盘”选项,或者仅忽略错误消息,这不会对应用程序产生负面影响。


16

只是去

iOS模拟器->硬件->键盘->取消选中连接硬件键盘选项。

这样可以解决问题。

执行上述步骤后,您的MAC键盘将无法使用,您必须使用模拟器键盘。


12

我在iOS 8上使用xcode,只是在Simulator-> Hardware-> Keyboard-> Connect Hardware Keyboard中取消选中connect harware键盘选项。

这样可以解决问题。


从字面上不知道这个iOS模拟器在哪里。还是硬件在哪里?您是在谈论真正的模拟器,例如看起来像iPhone的东西,通过它我可以找到硬件?
托马斯

7

我在Xcode 8.1和iOS 10.1中遇到了相同的问题。对我有用的是进入“模拟器”->“硬件”->“键盘”,然后取消选中“连接硬件键盘”。


7

进入“模拟器”->“硬件”->“键盘”,然后取消选中“连接硬件键盘”。

在我退出并重新启动模拟器之前,与上面的许多答案相同,对我而言并没有改变。xcode 8.2.1和Simulator 10.0。


5

使用模拟器运行应用

iOS模拟器->硬件->键盘-> iOS使用与OS X相同的布局

如果有人在其设备上运行其应用程序,这将解决此问题


3

由于两个不同的原因,我得到了相同的错误消息,因此可以将它们添加到调试清单中:

内容:Xcode 6.4,iOS:8.4。我正在添加带有自定义UIBarButtons 的工具栏,以加载UIKeyboardTypeNumberPad(Swift:)UIKeyboardType.numberPad,即“ Done”和“ +/-”。我在以下情况下遇到此问题:

  1. 我的UIToolbar被声明为属性,但是我忘记了显式分配/初始化它。

  2. 我已经离开了最后一行,[myCustomToolbar sizeToFit];这听起来和Holden的答案是同一个家族(我的代码在这里:https : //stackoverflow.com/a/32016397/4898050)。

祝好运


2

在iOS应用中找不到与OS X相连的数字小键盘。因此,您只需要在模拟器中取消选中“连接硬件键盘”选项,就可以通过以下路径进行测试:

Simulator -> Hardware -> Keyboard -> Connect Hardware Keyboard

这样可以解决上述问题。

我认为您也应该看到以下链接。它说,它是一个bugXCode那个论坛发帖线头!

参考


1

使用分发配置概要文件时,我遇到了同样的问题。检查您是否使用开发者资料


1

为什么长代码而不使用UIToolbar?既然警告仍然存在?

UIToolbar适用于任何iOS版本,这是我的示例代码

UIToolbar *doneToolbar = [[UIToolbar alloc] initWithFrame:(CGRect){0, 0, 50, 50}]; // Create and init
doneToolbar.barStyle = UIBarStyleBlackTranslucent; // Specify the preferred barStyle
doneToolbar.items = @[
[[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil], 
[[UIBarButtonItem alloc] initWithTitle:@"Done" style:UIBarButtonItemStylePlain target:self action:@selector(doneEditAction)] // Add your target action
]; // Define items -- you can add more

yourField.inputAccessoryView = doneToolbar; // Now add toolbar to your field's inputview and run
[doneToolbar sizeToFit]; // call this to auto fit to the view

- (void)doneEditAction {
    [self.view endEditing:YES];
}

0

也许您应该重置按钮的框架,我也遇到了一些问题,并且像这样对nslog的键盘视图进行了记录:

ios8:

"<UIInputSetContainerView: 0x7fef0364b0d0; frame = (0 0; 320 568); autoresize = W+H; layer = <CALayer: 0x7fef0364b1e0>>"

之前8:

"<UIPeripheralHostView: 0x11393c860; frame = (0 352; 320 216); autoresizesSubviews = NO; layer = <CALayer: 0x11393ca10>>"

-1

好的,这是一个简单的修复程序,当出现类似错误时,可以使“完成”按钮在iOS 9,iOS 8及更低版本的应用程序中显示和工作。在运行应用程序并通过“视图的层次结构”对其进行查看(例如,当应用程序在设备上运行并在情节提要中查看时,从“调试区域”栏中单击“视图层次结构”图标并查看您的视图)后,可以看到键盘出现在与iOS 8及以下版本相比,iOS 9中的不同窗口必须要考虑。 addButtonToKeyboard

- (id)addButtonToKeyboard
{
if (!doneButton)
{
   // create custom button
    UIButton * doneButton = [UIButton buttonWithType:UIButtonTypeCustom];
    doneButton.frame = CGRectMake(-2, 163, 106, 53);
    doneButton.adjustsImageWhenHighlighted = NO;
    [doneButton setImage:[UIImage imageNamed:@"DoneUp.png"] forState:UIControlStateNormal];
    [doneButton setImage:[UIImage imageNamed:@"DoneDown.png"] forState:UIControlStateHighlighted];
    [doneButton addTarget:self action:@selector(saveNewLead:) forControlEvents:UIControlEventTouchUpInside];
}

NSArray *windows = [[UIApplication sharedApplication] windows];
//Check to see if running below iOS 9,then return the second window which bears the keyboard   
if ([[[UIDevice currentDevice] systemVersion] floatValue] < 9.0) {
return windows[windows.count - 2];
}
else {
UIWindow* keyboardWithDoneButtonWindow = [ windows lastObject];
return keyboardWithDoneButtonWindow;
    }
}

这就是您可以根据需要从键盘上删除 KeyboardButton的方法。

- (void)removeKeyboardButton {

id windowTemp = [self addButtonToKeyboard];

if (windowTemp) {

    for (UIView *doneButton in [windowTemp subviews]) {
        if ([doneButton isKindOfClass:[UIButton class]]) {
            [doneButton setHidden:TRUE];
        }
    }
  }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.