7

请耐心等待,我在互联网上搜索了很多,但我找不到解决方案,因为它是一个新的 API。

我正在尝试为 iOS 8 创建一个自定义键盘。除了在 WebView 中,它工作得非常好!它有上一个-下一个按钮,位于inputAccessoryView. 我知道它是 webview 的只读属性,但由于 iOS 8 允许用户使用自定义键盘,我认为这个视图应该可以在某处进行编辑。有没有人遇到同样的问题?任何帮助,将不胜感激。

4

2 回答 2

7

您可以尝试改进这一点。尝试在您的 UIKeyboardDidShowNotification 事件处理程序中调用此函数。

-(void) removeKeyboard {
    UIWindow *keyboardWindow = nil;
    for (UIWindow *testWindow in [[UIApplication sharedApplication] windows]) {
        if (![[testWindow class] isEqual : [UIWindow class]]) {
            keyboardWindow = testWindow;
            break;
        }
    }
    // Locate UIWebFormView.
    for (UIView *possibleFormView in [keyboardWindow subviews]) {

        if ([[possibleFormView description] hasPrefix : @"<UIInputSetContainerView"]) {
            for (UIView* peripheralView in possibleFormView.subviews) {

                for (UIView* peripheralView_sub in peripheralView.subviews) {


                    // hides the backdrop (iOS 8)
                    if ([[peripheralView_sub description] hasPrefix : @"<UIKBInputBackdropView"] && peripheralView_sub.frame.size.height == 44) {
                        [[peripheralView_sub layer] setOpacity : 0.0];

                    }
                    // hides the accessory bar
                    if ([[peripheralView_sub description] hasPrefix : @"<UIWebFormAccessory"]) {


                        for (UIView* UIInputViewContent_sub in peripheralView_sub.subviews) {

                            CGRect frame1 = UIInputViewContent_sub.frame;
                            frame1.size.height = 0;
                            peripheralView_sub.frame = frame1;
                            UIInputViewContent_sub.frame = frame1;
                            [[peripheralView_sub layer] setOpacity : 0.0];

                        }

                        CGRect viewBounds = peripheralView_sub.frame;
                        viewBounds.size.height = 0;
                        peripheralView_sub.frame = viewBounds;

                    }
                }

            }
        }
    }

}

希望这可以帮助...

这是附件中的视图级别:

(UIWebFormAccessory) -> (UIToolbar) -> (UIImageView,UIToolbarButton,UIToolbarButton)



移除附件栏或将其缩放到零高度将导致黑色区域。您可以围绕主视图的框架或边界进行播放。或者如果您只是想摆脱按钮,只需尝试在 UIToolbutton 上设置 0 不透明度,工具按钮位于 uitoolbar 视图中

于 2014-09-25T07:06:27.157 回答
2

使用,它就像一个魅力,它比其他解决方案更干净。它正在使用 UIWebBrowserView(内部 UIWebView)的 inputAccessoryView 进行黑客攻击。

祝你编码好运!

于 2014-12-17T11:41:41.370 回答