以编程方式关闭分割键盘

时间:2013-03-20 18:27:48

标签: iphone objective-c keyboard

有没有办法以编程方式关闭键盘分割。

1 个答案:

答案 0 :(得分:1)

从我的小知识来看,你无法锁定默认的iPad键盘滚动动作。

您可以管理键盘类型等其他功能,也可以创建自定义ui键盘。

请检查this post正在讨论创建自定义ui键盘

但是,请查看此代码并尝试实现您的目标

    //The UIWindow that contains the keyboard view - It some situations it will be better to actually
    //iterate through each window to figure out where the keyboard is, but In my applications case
    //I know that the second window has the keyboard so I just reference it directly
    UIWindow* tempWindow = [[[UIApplication sharedApplication] windows] objectAtIndex:1];

    //Because we cant get access to the UIKeyboard throught the SDK we will just use UIView. 
    //UIKeyboard is a subclass of UIView anyways
    UIView* keyboard;

    //Iterate though each view inside of the selected Window
    for(int i = 0; i < [tempWindow.subviews count]; i++)
    {
        //Get a reference of the current view 
        keyboard = [tempWindow.subviews objectAtIndex:i];

        //Check to see if the className of the view we have referenced is \"UIKeyboard\" if so then we found
        //the keyboard view that we were looking for
        if([[keyboard className] isEqualToString:@\"UIKeyboard\"] == YES)
        {
            //Keyboard is now a UIView reference to the UIKeyboard we want. From here we can add a subview
            //to th keyboard like a new button

            //Do what ever you want to do to your keyboard here...
        }
    }